You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to a workaround for the method create_statement of cppdb that will launch an exception if you're trying to execute a statement containing nothing executable (i.e comments or EOF or set of spaces ) we're splitting the file on the ";" separator and we will not execute what's after the last one
In most of case that should not be a problem but it may be problematics in these two cases
CREATEtablefoo ( bar integer ) -- no final semicolon so it will not be executed
INSERT INTO foo VALUES (2);
TRESNI INTO foo VALUES(3) -- no final semicolon so it's not executed, and we're not seeing we've made a typo
The text was updated successfully, but these errors were encountered:
Due to a workaround for the method create_statement of cppdb that will launch an exception if you're trying to execute a statement containing nothing executable (i.e comments or EOF or set of spaces ) we're splitting the file on the ";" separator and we will not execute what's after the last one
In most of case that should not be a problem but it may be problematics in these two cases
The text was updated successfully, but these errors were encountered: