Help for this page

Select Code to Download


  1. or download this
    my $sth = $dbh->prepare('INSERT INTO table VALUES(?, ?, ?)');
    
    ...
    
    $sth->execute(3, 4, 5);
    $sth->execute(6, 7, 8);