On Thu, Feb 27, 2003 at 08:46:45AM -0500, [EMAIL PROTECTED] wrote:
> I'm having an issue with attempting to specify the AutoCommit option on a
> Connect to any Oracle database. Here is an example of my Connect
> statement:
> $dbh = DBI->connect('dbi:Oracle:dbName', 'uid', 'pwd', (AutoCommit => 0))
> or die "ERROR\nCouldn't connect to ORACLE database: " . DBI->errstr;
That should be a hash reference, as shown in the documentation:
$dbh = DBI->connect('dbi:Oracle:dbName', 'uid', 'pwd', { AutoCommit => 0 });
Ronald