RE: Oracle9.2 and mod_perl - advice sought

2003-03-26 Thread Jim Morrison [Mailing-Lists]
: Re: Oracle9.2 and mod_perl - advice sought This book might be useful to you too! Perl for Oracle DBAs http://www.oreilly.com/catalog/oracleperl/ HTH, Christopher Taranto At 06:12 PM 3/25/03 +, you wrote: Hello all, Quick request for advice/direction... I'm about

RE: Oracle9.2 and mod_perl - advice sought

2003-03-26 Thread Goehring, Chuck Mr., RCI - San Diego
PROTECTED] Sent: Wednesday, March 26, 2003 1:35 AM To: [EMAIL PROTECTED] Subject: RE: Oracle9.2 and mod_perl - advice sought Chris, Dmitri, Chuck, Thank you all.. Have got myself a safari bookshelf and cpan shell at the ready.. Wish me luck... Databases here I come ;-) - Jim -Original

RE: Oracle9.2 and mod_perl - advice sought

2003-03-25 Thread Goehring, Chuck Mr., RCI - San Diego
Jim, ODBC is not the way to go for Oracle if you can. Early on I tried using ODBC and I had crashes and hang-ups. Performance is substantially better also. The modules below and the oci libraries in the Oracle install will get it for you. This version works with the 9i Release 2 for me.

RE: Oracle9.2 and mod_perl - advice sought

2003-03-25 Thread Dmitri Bichko
The regular DBI (http://search.cpan.org/author/TIMB/DBI-1.35/DBI.pm) with DBD::Oracle (http://search.cpan.org/author/TIMB/DBD-Oracle-1.13/Oracle.pm) will work just fine. To make your life easier, take a look at Class::DBI (http://search.cpan.org/author/TMTM/Class-DBI-0.91/lib/Class/DBI.pm) as