Norbert: Perl findet CSV Treiber nicht

Hallo zusammen !

Ich hätte mal ne Frage:

Möchte gerne über Perl Daten aus einer CSV Datei einlesen bekomme aber immer folgende Fehlermeldung:

install_driver(CSV) failed: Can't locate File/Spec.pm in @INC (@INC contains: /o
pt/perl-5.004_04/lib/sun4-solaris/5.00404 /opt/perl-5.004_04/lib /opt/perl-5.004
_04/lib/site_perl/sun4-solaris /opt/perl-5.004_04/lib/site_perl .) at /opt/perl-
5.004_04/lib/site_perl/DBI.pm line 517.
Perhaps the DBD::CSV perl module hasn't been installed,
or perhaps the capitalisation of 'CSV' isn't right.
Available drivers: CSV, ExampleP, File, Proxy, mSQL, mysql.
at bert02.pl line 16

Zum Aufruf benutze ich folgendes:

$dbh = DBI->connect("DBI:CSV:f_dir=/home/strato/www/di/www.dielokalen.de/htdocs/cgi-bin/DB1")
      # or die "Cannot connect: " . $DBI::errstr;

Könnte mir bitte jemand einen Tip oder Rat geben ??

Vielen Dank im Voraus !

  1. hi!

    $dbh = DBI->connect("DBI:CSV:f_dir=/home/strato/www/di/www.dielokalen.de/htdocs/cgi-bin/DB1")
          # or die "Cannot connect: " . $DBI::errstr;
    Könnte mir bitte jemand einen Tip oder Rat geben ??

    === cut ===
    Perhaps the DBD::CSV perl module hasn't been installed,
    or perhaps the capitalisation of 'CSV' isn't right.
    === cut ===

    Ist die Fehlermeldung denn irgendwie missverständlich? Es fehlt ein Modul, das irgendwo eingebunden werden soll.

    bye, Frank!