Help for this page

Select Code to Download


  1. or download this
    my @ids = ( 1, 2 );
    
    ...
    
    $value_lookup_sth->execute(@ids)
       or debug($DBI::errstr);
    
  2. or download this
    sub plist { '(' . join( ',', ('?') x $_[0] ) . ')' }
    
    ...
    
    $value_lookup_sth->execute(@ids)
       or debug($DBI::errstr);
    
  3. or download this
    {
       package My::plist;
    ...
    
    $value_lookup_sth->execute(@ids)
       or debug($DBI::errstr);