Help for this page

Select Code to Download


  1. or download this
    open my $fh, "<", $fileToInsert or die "$filetoInsert: $!"
    my $csv = Text::CSV->new ({
    ...
    while (my $row = $csv->getline ($fh)) {
        $sth->execute (@$row);
        }