Help for this page

Select Code to Download


  1. or download this
        my $NUM_FIELDS = 14;
    
    ...
        }
    
        $sth->finish;
    
  2. or download this
        while (<FILE>) {
            my @line = (parse_cvs($_));
    ...
            $sth->execute(@line);
            $sth->finish;
        }