-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 28, 2006 5:26 AM
To: [email protected]
Subject: DBD:CSV problem on Solaris
>
> Hello,
>
> I do have a problem with a littler perl script I wrote.
> It uses DBD:CSV and I don´t know why it doesn´t work as I would expect it.
>
[snip]
>
> my $dbh = DBI->connect("DBI:CSV:");
Add this after connecting:
$dbh->{RaiseError} = 1;
This will cause DBI to die with an error message when there is a
problem.
Regards,
Philip