in reply to Parse error

Looks like you're missing

use Tie::CSV_File;

-derby

Update: Actually it looks like you don't have Text::CSV_XS installed.

Replies are listed 'Best First'.
Re^2: Parse error
by maurkb (Novice) on Dec 17, 2007 at 19:50 UTC
    I do have "use Tie::CSV_File;" and I do have Text::CSV XS installed if I look via the PPM gui. But it is noted as upgradeable. I marked it as install again via PPM in hopes of it upgrading with the latest module but after installing, it is still marked as upgradeable. If I try to install via the CPAN i get a nmake error and it states
    "make had a bad status, install seems impossible"
    What parse is the error referring to? I have the text::CSV_XS parse. What does the statement "Can't locate object method 'parse' via package 'quote_char' mean? What is the relevance of "quote_char"?
      ..still marked as upgradeable. If I try to install via the CPAN ...
      Which version do you have? Does the test-suite pass?

      What parse is the error referring to?
      trace the program (perl -d) or grep the source to find out

      What does the statement "Can't locate object method 'parse' via package 'quote_char' mean?
      to find out use diagnostics;

      What is the relevance of "quote_char"?
      trace or grep