Help for this page

Select Code to Download


  1. or download this
    $type =~ s/\s+/ /g;  # Liberal for inputs, strict for outputs.
    $type =~ s/^\s//;
    ...
       \z
    /x
       or die;
    
  2. or download this
    if ($type eq 'VARCHAR') {
       if ($arg eq '')             { $sql = $type; }
    ...
    else {
       die
    }