Help for this page

Select Code to Download


  1. or download this
    sub sql_quote {
      my ($entry) = @_;
      $entry =~ s/'/''/g;
      return "'" . $entry . "'";
    }
    
  2. or download this
    $st->execute("%$bar");