Help for this page

Select Code to Download


  1. or download this
    for my $val(@values) {
        $val = $dbh->quote($val);
    ...
        );
        $sth->execute();
    }
    
  2. or download this
    for my $val(@values) {
        my $sth = $dbh->prepare_cached(
    ...
        );
        $sth->execute($val);
    }