On Tue, 2003-11-11 at 14:55, Perrin Harkins wrote: > I think I'm going to end up just turning off > warnings for that one line in Apache::DBI.
In case anyone is curious, this doesn't work. What does work is adding "local $dbh->{'PrintError'} = 0;" right before that line in Apache::DBI. A better solution though is calling $dbh->commit(), even though it isn't needed on MyISAM tables. I'm leaving AutoCommit off because in some of these operations I use InnoDB tables with transactions. - Perrin -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html