Subject: | commit causes warning from DBI for users with mysql autocommit on |
In "sub commit" of TimingBotDBI, line 83 it says:
$dbh->commit;
This should be:
$dbh->commit if $dbh->{'AutoCommit'} == 0;
Users that open a Mysql connection with autocommit on, will otherwise
get an error "commit ineffective with autocommit on" from DBI if they
call the commit function of TimingBotDBI.