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:58 +00:00
parent e7c3a8afae
commit 22877e97e9

View file

@ -230,7 +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 /* We don't need to warn, because the DBI layer will do it for us */
return TRUE; return TRUE;
} }