FileMaker - ODBC/JBDC 连接 - SQL 的什么方言
我将 DB Visualizer 设置为 FileMaker Pro 10 Server 的 JDBC 客户端,它可以正常工作,但我不确定要使用什么 SQL 语法。
例如,select * from Holidays limit 10
产生了解析错误。
有谁知道具体语法吗?或者至少有一些与 MySQL 的 SQL 的重要区别?
I set up DB Visualizer as a JDBC client for FileMaker Pro 10 Server and it's working but I'm not sure what SQL syntax to use.
For example select * from Holidays limit 10
yielded a parse error.
Does anyone know the specific syntax? Or at least a few of the important differences from say MySQL's SQL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不支持 LIMIT。在 Filemaker 10 JDBC 文档 中,SELECT 语句语法中没有提及 LIMIT,如下所示MySQL 文档
LIMIT isn't supported. In the Filemaker 10 JDBC documentation there's no mention of LIMIT in the SELECT statement syntax as there is in the MySQL documentation
不支持 limit 语句(也不需要,JDBC 规范的架构使您只需读取所需的行数)。
文档位于:http://www.filemaker.com/downloads/documentation/fm8_odbc_jdbc_developer。 pdf
The limit statement is not supported (and is not needed, the JDBC spec is architected so that you just read the number of rows you want).
The documentation is here: http://www.filemaker.com/downloads/documentation/fm8_odbc_jdbc_developer.pdf