buggins / ddbc

DDBC is DB Connector for D language (similar to JDBC)
78 stars 45 forks source link

setAutoCommit(false) has no effect (sqlite) #16

Closed dueksam closed 8 years ago

dueksam commented 8 years ago

in the title

EDIT: not sure. Will maybe reopen

dueksam commented 8 years ago

it works but only with:

conn.createStatement().executeUpdate("BEGIN");
PreparedStatement ps = conn.prepareStatement(" ... ");
...
conn.commit();

without "BEGIN" it won't work. Don't know if it's supposed to work that way so I'll reopen :)