Help for this page

Select Code to Download


  1. or download this
    sub run_do_with_placeholders($dbh, $id, $name) {
        $dbh->do(qq{
    ...
            VALUES(?, ?)},
            undef, $id, $name);
    }