in reply to Re: memory problems parsing large csv file
in thread memory problems parsing large csv file
DBD::CSV will read the complete CSV into memory, so it won't solve memory hog problems.
As a side note, in the upcoming version of DBD::CSV you don't need that (sym)link anymore:
my $dbh = DBI->connect ("dbi:CSV:", undef, undef, { f_ext => ".csv/r", f_dir => ".", f_schema => undef });will only open the files with a .csv extension and have it removed from the table name.
|
|---|