Help for this page

Select Code to Download


  1. or download this
    my @where;
    my @values;
    ...
    
    my $sth = $dbh->prepare_cached($sql);
    $sth->execute(@values);
    
  2. or download this
    my @values = (undef, $var1, $var2, $var3);
    my @where;
    ...
    
    my $sth = $dbh->prepare_cached($sql);
    $sth->execute(@defined_values);