Newbie question to mod_perl and Apache::DBI

2001-02-08 Thread Caroline Kliegl
Hi there, I am new to mod_perl and currently trying to make use of Apache::DBI. This is my enviroment: Suse Linux 6.3, Apache 1.3.12, mod_perl 1.24 and Oracle 8i. I am using HTML:Mason as well, as a templating system. Everything works. Apache::DBI is loaded via httpd.conf by Apache properly and

Newbie question to mod_perl and Apache::DBI

2001-02-08 Thread Caroline Kliegl
Hi there, I am new to mod_perl and currently trying to make use of Apache::DBI. This is my enviroment: Suse Linux 6.3, Apache 1.3.12, mod_perl 1.24 and Oracle 8i. I am using HTML:Mason as well, as a templating system. Everything works. Apache::DBI is loaded via httpd.conf by Apache properly and

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_perl

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 it

RE: Newbie question to mod_perl and Apache::DBI

2001-02-08 Thread Geoffrey Young
(or don't set AutoCommit=0 in your connect string if you can't rebuild it now...) try these and see if they make a difference... HTH --Geoff -Original Message- From: Caroline Kliegl To: [EMAIL PROTECTED] Sent: 2/8/01 5:57 PM Subject: Newbie question to mod_perl and Apache::DBI Hi there, I

RE: Newbie question to mod_perl and Apache::DBI

2001-02-08 Thread Geoffrey Young
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 like a bug (somewhere): if(!$Rollback{$Idx} and $needCleanup and Apach

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