1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-08 06:38:12 -04:00

We don't need to issue a warnings for commit while AutoCommit enabled, because the DBI layer does it already for us.

This commit is contained in:
Adam Kennedy 2009-04-17 02:55:44 +00:00
parent 03e95f6454
commit e7c3a8afae

View file

@ -230,6 +230,7 @@ sqlite_db_commit(SV *dbh, imp_dbh_t *imp_dbh)
char *errmsg; char *errmsg;
if (DBIc_is(imp_dbh, DBIcf_AutoCommit)) { if (DBIc_is(imp_dbh, DBIcf_AutoCommit)) {
/* We don't need to warn, because the DBI layer will do it for u
return TRUE; return TRUE;
} }