Help for this page

Select Code to Download


  1. or download this
    my $query = q{select distinct
                account,
    ...
    my $sth = $dbh->prepare($query);
    
    $sth->execute($_);
    
  2. or download this
    my $query = "select distinct
                account,
    ...
    my $sth = $dbh->prepare($query);
    
    $sth->execute($dbh->quote($_));