Help for this page

Select Code to Download


  1. or download this
      sub quote_number {
        my($dbh, $value) = @_;
    ...
          return $dbh->quote($value);
        }
      }
    
  2. or download this
      sub quote_integer {
        my($dbh, $value) = @_;
    ...
          return $dbh->quote($value);
        }
      }