Subject: | DBD::mysql doesn't always obey "PrintWarn" setting |
DBD::mysql doesn't always seem to obey the "PrintWarn" option of DBI. For instance, I connected to my database with:
my $dbh = DBI->connect(
@args{'dsn','user','pass'},
{ RaiseError => 0, PrintError => 0, PrintWarn => 0, AutoCommit => 1 }
) or die("Couldn't connect to database: ", DBI->errstr, "\n");
And I am still getting these messages:
commit ineffective with AutoCommit enabled at migrate-database-schema line 96.
Commmit ineffective while AutoCommit is on at migrate-database-schema line 96.
It also seems odd that I get this message twice.
Thanks,
Tyler