Help for this page
# 1 ... my $sql = sprintf("UPDATE mytable SET %s = ? WHERE id = ?", $p) $dbh->do($sql, undef, param($p), $id); }
# 2 ... # And then hit the database with that UPDATE statement just once. $dbh->do($sql, undef, bind);