From 22877e97e977eac5aa1628fe392ffc4cf7485fe7 Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Fri, 17 Apr 2009 02:55:58 +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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbdimp.c b/dbdimp.c index 9667ae4..f7416ae 100644 --- a/dbdimp.c +++ b/dbdimp.c @@ -230,7 +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 + /* We don't need to warn, because the DBI layer will do it for us */ return TRUE; }