DBD::Informix Test Error On 64bit Linux (RHEL4.4)

2007-02-22 Thread Jim Kenedy
Note: This was previously posted on c.d.i but should have been posted here (as kindly noted by Jonathan Leffler). Also included are the run output with DBI_TRACE=3 as well as the perl -Ilib BugReport output. -- I'm trying t

RE: DBI 1.53 Compile Does not Pass Test on RHEL 3.0

2007-02-22 Thread William R. Mussatto
On Thu, February 22, 2007 15:35, Garrett, Philip \(MAN-Corporate\) said: > Unless you plan to use DBI and threads in the same process, you can > ignore that test. What is the impact of mod_apache if you are using threaded apache server (vs. child spawning). > -Original Message- > From: Mike

How to prevent sth sharing error status with parent dbh and siblings

2007-02-22 Thread Tim Bunce
On Thu, Feb 22, 2007 at 06:11:38PM +, Martin Evans wrote: > Tim Bunce wrote: > >On Thu, Feb 22, 2007 at 04:34:08PM +, Martin Evans wrote: > >>Martin Evans wrote: > >> > >>It would appear the problem I'm seeing can be simplified to the > >>following (not using any DBIx): > >> > >>use DBI qw

RE: DBI 1.53 Compile Does not Pass Test on RHEL 3.0

2007-02-22 Thread Garrett, Philip \(MAN-Corporate\)
Unless you plan to use DBI and threads in the same process, you can ignore that test. -Original Message- From: Mike Southworth [mailto:[EMAIL PROTECTED] Sent: Thursday, February 22, 2007 12:23 AM To: dbi-users@perl.org Subject: DBI 1.53 Compile Does not Pass Test on RHEL 3.0 I have bee

Re: DBD::Informix Test Error On 64bit Linux (RHEL4.4)

2007-02-22 Thread Guardian of DBD::Informix
On 2/22/07, Jim Kenedy <[EMAIL PROTECTED]> wrote: Note: This was previously posted on c.d.i but should have been posted here (as kindly noted by Jonathan Leffler). Also included are the run output with DBI_TRACE=3 as well as the perl -Ilib BugReport output.

DBI 1.53 Compile Does not Pass Test on RHEL 3.0

2007-02-22 Thread Mike Southworth
I have been trying all night to get DBI 1.53 installed on Perl 5.008 that comes with RHEL 3.0. When CPAN failed I have tried downloading and compiling, however I get the same problems. Here is a snapshot of the process: [EMAIL PROTECTED] DBI-1.53]# perl Makefile.PL

RE: DBI Number of fields

2007-02-22 Thread Ian Harisay
You should first make sure your query runs outside of Perl. -Original Message- From: Brian Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday, February 22, 2007 10:22 AM To: dbi-users@perl.org Subject: DBI Number of fields Hey Folks - We are having a problem with a script that uses DBI an

Re: How to call DBD::Oracle's dbms_output_get from within a DBIx

2007-02-22 Thread Martin Evans
Tim Bunce wrote: On Thu, Feb 22, 2007 at 04:34:08PM +, Martin Evans wrote: Martin Evans wrote: It would appear the problem I'm seeing can be simplified to the following (not using any DBIx): use DBI qw(neat); use strict; use warnings; my $h = DBI->connect("dbi:Oracle:XXX","xxx","yyy",

DBI Number of fields

2007-02-22 Thread Brian Johnson
Hey Folks - We are having a problem with a script that uses DBI and ODBC to connect to a MSSQL database. The script was running fine, until we added some fields to a select statement. Now the scripts hangs at that select. The script has multiple fields (as many as 22 fields), multiple joins

Re: How to call DBD::Oracle's dbms_output_get from within a DBIx

2007-02-22 Thread Tim Bunce
On Thu, Feb 22, 2007 at 09:13:15AM -0500, Garrett, Philip (MAN-Corporate) wrote: > Tim Bunce wrote: > > > > You need to either use a separate non-DBIx::Log4perl dbh for the > > dbms_output_get call, or try something more hackish like > > > > my @d = $dbh->func('dbms_output_get') > > u

Re: How to call DBD::Oracle's dbms_output_get from within a DBIx

2007-02-22 Thread Tim Bunce
On Thu, Feb 22, 2007 at 04:34:08PM +, Martin Evans wrote: > Martin Evans wrote: > > It would appear the problem I'm seeing can be simplified to the > following (not using any DBIx): > > use DBI qw(neat); > use strict; > use warnings; > > my $h = DBI->connect("dbi:Oracle:XXX","xxx","yyy", >

Re: How to call DBD::Oracle's dbms_output_get from within a DBIx

2007-02-22 Thread Martin Evans
Martin Evans wrote: Cheers, I took a variation on your second suggestion similar to what Philip Garret put forward. This works but I have (hopefully) one related last issue. In the following sequence the first statement handle loses errstr and err values (see comments): DBIx::Log4perl::st::e

Re: How to call DBD::Oracle's dbms_output_get from within a DBIx

2007-02-22 Thread Martin Evans
Tim Bunce wrote: On Thu, Feb 22, 2007 at 09:12:14AM +, Martin Evans wrote: Tim Bunce wrote: On Wed, Feb 21, 2007 at 04:25:54PM +, Martin J. Evans wrote: Hi, I have DBIx::Log4perl which is currently connected to a DBD::Oracle. In DBIx::Log4perl::st::execute I want to call DBD::Oracle'

RE: How to call DBD::Oracle's dbms_output_get from within a DBIx

2007-02-22 Thread Garrett, Philip \(MAN-Corporate\)
Tim Bunce wrote: > On Thu, Feb 22, 2007 at 09:12:14AM +, Martin Evans wrote: >> Tim Bunce wrote: >>> On Wed, Feb 21, 2007 at 04:25:54PM +, Martin J. Evans wrote: >> >> and I still get >> >> Deep recursion on subroutine "DBD::Oracle::db::dbms_output_get" >> >> dbms_output_get doe

DBI 1.54 RC8 Windows XP testing results

2007-02-22 Thread John Scoles
Ok I Compiled it again on a Windows bos asme as before and it was OK Just for your info Tim I have attached the output of the 'nmake tes't from the 85gofer till the end. Cheers John Scoles - Original Message - From: "Tim Bunce" <[EMAIL PROTECTED]> To: "Martin J. Evans" <[EMAIL PROT

Re: How to call DBD::Oracle's dbms_output_get from within a DBIx

2007-02-22 Thread Tim Bunce
On Thu, Feb 22, 2007 at 09:12:14AM +, Martin Evans wrote: > Tim Bunce wrote: > >On Wed, Feb 21, 2007 at 04:25:54PM +, Martin J. Evans wrote: > >>Hi, > >> > >>I have DBIx::Log4perl which is currently connected to a DBD::Oracle. In > >>DBIx::Log4perl::st::execute I want to call DBD::Oracle's

Re: DBD::Oracle 1.19 install on Fedora Core 5

2007-02-22 Thread Martin Evans
Martin Evans wrote: Chris Howard wrote: On Wed, 2007-02-21 at 07:57 -0700, Chris Howard wrote: Having problems with the install of DBD::Oracle 1.19 on a Fedora Core 5 machine. DBI 1.53 installed and the tests ran ok I'm using the Oracle XE from the Oracle download oracle-xe-10.2.0.1-1.0.i38

Re: DBD::Oracle 1.19 install on Fedora Core 5

2007-02-22 Thread Martin Evans
Chris Howard wrote: On Wed, 2007-02-21 at 07:57 -0700, Chris Howard wrote: Having problems with the install of DBD::Oracle 1.19 on a Fedora Core 5 machine. DBI 1.53 installed and the tests ran ok I'm using the Oracle XE from the Oracle download oracle-xe-10.2.0.1-1.0.i386.rpm The error mes

Re: How to call DBD::Oracle's dbms_output_get from within a DBIx

2007-02-22 Thread Martin Evans
Tim Bunce wrote: On Wed, Feb 21, 2007 at 04:25:54PM +, Martin J. Evans wrote: Hi, I have DBIx::Log4perl which is currently connected to a DBD::Oracle. In DBIx::Log4perl::st::execute I want to call DBD::Oracle's dbms_get_line which is usually (from applications) called like this: @lines