From e7c3a8afaea6add0cbc3c8374c960e7b3ef27ebe Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Fri, 17 Apr 2009 02:55:44 +0000 Subject: [PATCH] We don't need to issue a warnings for commit while AutoCommit enabled, because the DBI layer does it already for us. --- dbdimp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dbdimp.c b/dbdimp.c index 4955163..9667ae4 100644 --- a/dbdimp.c +++ b/dbdimp.c @@ -230,6 +230,7 @@ sqlite_db_commit(SV *dbh, imp_dbh_t *imp_dbh) char *errmsg; if (DBIc_is(imp_dbh, DBIcf_AutoCommit)) { + /* We don't need to warn, because the DBI layer will do it for u return TRUE; }