Help for this page

Select Code to Download


  1. or download this
    $sth = $dbh->prepare(q(update foo set bar = ? where quux = ?));
    $sth->execute('one', 'two');
    $sth->execute('three', 'four');
    ...