perlfellas has asked for the wisdom of the Perl Monks concerning the following question:
Thanksuse strict; use DBI; my $DBI_DSN = "dbi:Oracle:DB_NAME"; my $DBI_USER = "user"; my $DBI_PASS = "password"; $dbh = DBI->connect($DBI_DSN, $DBI_USER, $DBI_PASS, {AutoCommit => 0, RaiseError => 0, LongReadLen => 2000000, LongTruncOk => 0}) ;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Oracle Timed Out error
by wazoox (Prior) on May 06, 2005 at 11:08 UTC | |
|
Re: Oracle Timed Out error
by VSarkiss (Monsignor) on May 06, 2005 at 14:08 UTC |