When inserting a VARCHAR or TEXT field, the editor throws an "Unterminated string literal" error. See attached code for example.
Anonymous
2009-10-11
SQL file that will produce error when executed in SQLExplorer
Heiko Hilbert
2009-10-12
SQLExplorer currently supports only escaped qoutes by doubling.
Change your script at line 98 from:
'Supportin her man\'s dream chasin!'
to
'Supportin her man''s dream chasin!'
and it works.
This works with MySql-Client too.
Heiko Hilbert
2009-10-12
Heiko Hilbert
2009-11-15