Help for this page

Select Code to Download


  1. or download this
    my %row;
    while(<>) {
    ...
            or next;
        $row{$key} = $value;
    }
    
  2. or download this
    use Data::Dumper;
    print Dumper \%row;
    
  3. or download this
    # $db is the DBIx::Simple database connection handle object
    $db->insert($table, \%row);