Yes, this is a limitation of the extremely simple check we do on the string you pass in. JDBC requires you to call queries separately from update statements - so to try to determine which to use, we look at the beginning of your query for the literal string select
- if we don’t find it, we assume you’re running some kind of update.
3 Likes