The line of code producing the error is (in open_file):
$array = $attrs->{csv_csv_in}->getline ($tbl->{fh}) or
croak "Missing first row";
The error is that
$attrs->{csv_csv_in} is undef.
As you can see, from a few lines up,
$attrs->{csv_csv_in} is simply a copy of
$meta->{csv_in} (which must therefore also be undef).
Beyond that, I can't help much. There's also this comment in CSV.pm, which may be of assistance in working out how the error has come to be:
# open_table (0 is used up to and including DBI-1.1611
# Later versions use open_file (see DBD::CSV::Table)
And you can see that the
$DBD::File::VERSION is significant.
Cheers,
Rob
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.