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

my $csv = Text::CSV->new({ binary => 1 });

Replies are listed 'Best First'.
Re^4: Using Text::CSV
by Win (Novice) on Sep 25, 2009 at 09:26 UTC
    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.