Help for this page

Select Code to Download


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