Help for this page
my $query = "UPDATE sometable SET someRecord=? WHERE otherRecord=?"; $sth = $dbh->prepare($query); $sth->execute('value1','value2') or die $sth->errstr();