Help for this page

Select Code to Download


  1. or download this
    my $sql_fmt = "INSERT INTO whatever VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?
    +)"; 
     while (<INFILE>)   {
         my @line = (parse_csv ($_)); 
         $dbh->do($sql_fmt,undef,@line);
     }