Help for this page
for my $val(@values) { $val = $dbh->quote($val); ... ); $sth->execute(); }
for my $val(@values) { my $sth = $dbh->prepare_cached( ... ); $sth->execute($val); }