in reply to Re: Trouble getting DBD::CSV to work
in thread Trouble getting DBD::CSV to work
andmy $dbh = DBI->connect ("dbi:CSV:f_dir=/root", undef, undef, { f_ext => ".csv", RaiseError => 1, } );
andmy $dbh = DBI->connect ("dbi:CSV:f_dir=root", undef, undef, { f_ext => ".csv", RaiseError => 1, } );
and:my $dbh = DBI->connect ("dbi:CSV:", undef, undef, { f_ext => ".csv", RaiseError => 1, f_dir => "/root", } );
But none of these work. Can you please clarify what you meant?my $dbh = DBI->connect ("dbi:CSV:", undef, undef, { f_ext => ".csv", RaiseError => 1, f_dir => "root", } );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Trouble getting DBD::CSV to work
by Tux (Canon) on Aug 05, 2014 at 08:29 UTC | |
by paulski82 (Novice) on Aug 05, 2014 at 09:00 UTC | |
by Tux (Canon) on Aug 05, 2014 at 09:31 UTC | |
by paulski82 (Novice) on Aug 05, 2014 at 12:05 UTC | |
by Tux (Canon) on Aug 05, 2014 at 12:08 UTC |