RE: Newbie question to mod_perl and Apache::DBI

2001-02-08 Thread Caroline Kliegl
Hi everybody, I have just removed RaiseError => 1, AutoCommit => 0 out of my DBI->connect. No more errors, ORA works! Next, I will recompile mod_perl with PERL_STACKED_HANDLERS = 1. Will come up with the result today. Thanks a

RE: Newbie question to mod_perl and Apache::DBI

2001-02-08 Thread Geoffrey Young
g To: 'Caroline Kliegl ' Cc: '[EMAIL PROTECTED]' Sent: 2/8/01 7:52 PM Subject: RE: Newbie question to mod_perl and Apache::DBI Apache::DBI will call push_handlers on to issue a rollback if AutoCommit=0 in your connect string... but the problem may not be with you... looks lik

RE: Newbie question to mod_perl and Apache::DBI

2001-02-08 Thread Geoffrey Young
Apache::DBI will call push_handlers on to issue a rollback if AutoCommit=0 in your connect string... but the problem may not be with you... looks like a bug (somewhere): if(!$Rollback{$Idx} and $needCleanup and Apache->can('push_handlers'){ ... } looks like calling Apache->can('push_handler

Re: Newbie question to mod_perl and Apache::DBI

2001-02-08 Thread G.W. Haywood
Hi there, On Thu, 8 Feb 2001, Caroline Kliegl wrote: > I am new to mod_perl and currently trying to make use of Apache::DBI. > > I get the following error : > > Rebuild with -DPERL_STACKED_HANDLERS to $r->push_handlers at > /usr/local/lib/perl5/site_perl/5.6.0/Apache/DBI.pm line 93. I think i

Re: Newbie question to mod_perl and Apache::DBI

2001-02-08 Thread Ajit Deshpande
On Thu, Feb 08, 2001 at 11:57:50PM +0100, Caroline Kliegl wrote: >[..] > With my other script, updating data, I get the following error : > > Rebuild with -DPERL_STACKED_HANDLERS to $r->push_handlers at > /usr/local/lib/perl5/site_perl/5.6.0/Apache/DBI.pm line 93. > [..] You need to compile mod