Brice, Charles wrote:
> my $dbh = DBI->connect("dbi:Oracle:aux","ceb","ceb");
>
> my $cursor = $dbh->prepare("select * from tab") || die "PREPARE
> error $DBI::errstr\n";
what error is it putting in your error log?
you could try setting DBI's trace level to 2 like this:
DBI->trace(2); # write all kinds of stuff to the error log
my $dbh = DBI->connect("connect args");
my $cursor = $dbh->prepare("select statement")
|| die DBI::errstr;
DBI->trace(0); # stop writing everything to the error log
which may help you pinpoint the problem.
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]