in reply to Re: Using Text::CSV
in thread Using Text::CSV

This node falls below the community's minimum standard of quality and will not be displayed.

Replies are listed 'Best First'.
Re^3: Using Text::CSV
by ikegami (Patriarch) on Sep 24, 2009 at 18:07 UTC
    my $csv = Text::CSV->new({ binary => 1 });
      Using that line gives me the following error message:
      Can't locate auto/Text/CSV/getline.al in @INC (@INC contains: c:/Perl/ +lib c:/Perl/site/lib .) at Process_CSV.pl line 59 (#1) Uncaught exception from user code: Can't locate auto/Text/CSV/getline.al in @INC (@INC contains: +c:/Perl/li b c:/Perl/site/lib .) at Process_CSV.pl line 59 AutoLoader::AUTOLOAD('Text::CSV=HASH(0x15db250)', 'GLOB(0x15d5 +170)') cal led at Process_CSV.pl line 59

        This indicates that you are using a very old version of Text::CSV

        $ perl -MText::CSV -wle'print $Text::CSV::VERSION' 1.13 $ perl -MText::CSV -wle'print $Text::CSV_XS::VERSION' 0.67

        Text::CSV below 1.00 is close to useless


        Enjoy, Have FUN! H.Merijn
        A reply falls below the community's threshold of quality. You may see it by logging in.
        A reply falls below the community's threshold of quality. You may see it by logging in.
Re^3: Using Text::CSV
by Anonymous Monk on Sep 24, 2009 at 16:01 UTC
    A reply falls below the community's threshold of quality. You may see it by logging in.