Help for this page

Select Code to Download


  1. or download this
    # This code assumes that you've already initialized a
    # database handle, $dbh, and your string of data is in
    ...
      my @fields = split '\|', $record;
      $sth->execute(@fields);
    }