in reply to Re: Keeping Perl DBI Quietin thread Keeping Perl DBI Quiet
And if you're using DBD::mysql, you take out the 'OR' in that query:
my $sth = $dbh->prepare('INSERT IGNORE INTO table VALUES(?,?,?); $sth->execute(@foo); [download]