From 6c843aa52b68d851b661f4d8c57ab92ece4bba42 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Thu, 2 Apr 2009 00:36:01 +0000 Subject: [PATCH] DBD-SQLite: this change silences those Class::DBI prepared_cache warnings, though I'm not still fully investigated if this is the right fix. --- dbdimp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbdimp.c b/dbdimp.c index 35d8299..d71e961 100644 --- a/dbdimp.c +++ b/dbdimp.c @@ -412,7 +412,7 @@ sqlite_st_execute (SV *sth, imp_sth_t *imp_sth) /* warn("Finalize\n"); */ sqlite3_reset(imp_sth->stmt); imp_sth->nrow = sqlite3_changes(imp_dbh->db); - DBIc_ACTIVE_on(imp_sth); + /* DBIc_ACTIVE_on(imp_sth); */ /* warn("Total changes: %d\n", sqlite3_total_changes(imp_dbh->db)); */ /* warn("Nrow: %d\n", imp_sth->nrow); */ return imp_sth->nrow;