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
{{ message }}
This repository was archived by the owner on Mar 29, 2026. It is now read-only.
I was wondering if you have any thoughts around how to parse a SQL string that has multiple inidividual statements? For example - I would like to be able to parse:
UPDATE customer SET firstname ='Dave'WHERE id =1;
UPDATE customer SET firstname ='Jo'WHERE id =2;
DELETEFROM customer WERE id =3
At the moment, the parser is expecting a single UPDATE, INSERT, SELECT statement etc and so if you try to parse this string, it falls over.
I am suspecting that me doing a string split on a semi colon prior to parsing may not be ideal?