in reply to Re: Appending data to large files
in thread Appending data to large files
although if i do $csv->version it works and displays the version so the module is installed correctly - any ideas?Thanks
**UPDATE: I installed Text::CSV 1.10 and Text::CSV_XS 0.58 and now with this code:
$file = 'project_data.csv'; my $parser = Text::CSV->new(); while (my $row = $parser->getline($file)){ @fields = @$row; }
I get the following error:
Can't locate object method "getline" via package "project_data.csv" (perhaps you forgot to load "project_data.csv"?) at ./join_csv.pl line 25.
Any ideas? Thanks
**END**
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Appending data to large files
by kyle (Abbot) on Jan 13, 2009 at 17:45 UTC | |
by joec_ (Scribe) on Jan 14, 2009 at 09:37 UTC | |
by kyle (Abbot) on Jan 14, 2009 at 13:33 UTC |