RE: CSV problem on Solaris
am 28.06.2006 15:30:22 von Philip.Garrett-----Original Message-----
From: Govinda.Pfister@telekom.de [mailto:Govinda.Pfister@telekom.de]=20
Sent: Wednesday, June 28, 2006 5:26 AM
To: dbi-users@perl.org
Subject: DBD:CSV problem on Solaris
>=20
> Hello,
> =20
> I do have a problem with a littler perl script I wrote.
> It uses DBD:CSV and I don=B4t know why it doesn=B4t work as I would =
expect it.
>
[snip]
>
> my $dbh =3D DBI->connect("DBI:CSV:");
Add this after connecting:
$dbh->{RaiseError} =3D 1;
This will cause DBI to die with an error message when there is a
problem.
Regards,
Philip