Help for this page

Select Code to Download


  1. or download this
    my $table_lit = $dbh->quote_identifier( $table );
    
    ...
    ...
    
    $sth->execute('+herman +melville');
    
  2. or download this
    my $table_lit   = $dbh->quote_identifier( $table );
    my $pattern_lit = $dbh->quote( '+herman +melville' );
    ...
    ...
    
    $sth->execute();