How can I check the SQL syntax in a .sql file?
|
|
You could paste it into a query browser like the MySQL Query Browser (part of the GUI Tools package) and visually inspect how the keywords and string literals are colored to more easily see if you've made any syntax errors. |
|||
|
|
|
just run it.... begin transaction run it rollback |
|||||||||||||||
|
|
There are a few free/try-ware products out there that will allow you to connect to a MySQL database or just paste in the script to validate it. Google is your friend here. Mimer will check ANSI-Standard syntax validation but probably not handle any MySQL specifics. |
||||
|
|
|
The basic lexer seems to be implemented in sql/sql_lex.cc. You could use/salvage this to build your own test parser. But this would only check for syntax but not any runtime errors. |
|||
|
|
|
There are a couple of possiblities. If you are using InnoDB tables that support transactions, you can simply execute a If you are testiing |
|||||
|