Gauthier
Gauthier
Just checked this a bit more, it's not supported in the driver. It seems [it would be possible](https://sqlite.org/forum/forumpost/f47ae41b4d336239) from the SQLite C API, which can return the unused portion of...
Is this still happening on the latest version?
Seems like it was actually closed by #340
~~Is this still happening on the latest version?~~
Do you have any issue stemming from that, and if yes could you provide some details ?
@ChristianFischerJena @pviotti can i close this ?
Is this still happening on the latest version?
This is quite old, is this still relevant, or can we close the issue?
I'm wondering why you would execute a single command containing only `;` though.
I just tried the following: ```java @Test public void issue731() throws Exception { Connection conn = getConnection(); Statement stmt = conn.createStatement(); stmt.executeUpdate(";"); stmt.close(); conn.close(); } ``` And i don't get...