Help for this page

Select Code to Download


  1. or download this
    @input                = ();
    
    ...
                        FROM table
                        WHERE field LIKE ?") or die $dbh->errstr;
    $sth->execute(@input) or die $dbh->errstr;
    
  2. or download this
    @input                = ();
    
    ...
                        FROM table
                        WHERE field IN (?) ") or die $dbh->errstr;
    $sth->execute(@input) or die $dbh->errstr;