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?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

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

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.