in reply to
Best method to load a csv file.
If at all possible, use a loader for your database. If not, and you use
DBD::CSV
, you can simplify your code by using SQL to both access the CSV and load the data. If you want the fastest and most flexible option, use
Text::CSV_XS
, *not*
Text::CSV
.
Comment on
Re: Best method to load a csv file.
In Section
Seekers of Perl Wisdom