Help for this page

Select Code to Download


  1. or download this
    use strict;
    use SQL::Abstract;
    
    ...
    
    print "$stmt\n";
    print join '|', @bind;
    
  2. or download this
    SELECT name, email, addr, location
    FROM my_users
    WHERE ( ( ( email = ? OR email = ? OR email = ? ) AND
    ...
    here|there|and_everywhere|
    one|two|three|
    1970|1980|1990
    
  3. or download this
    my $sth = $dbh->prepare($stmt);
    $sth->execute(@bind);