Re: DBI Error: END failed--call queue aborted.

2010-11-18 Thread i5mast
On Nov 13, 10:19 am, sco...@pythian.com (John Scoles) wrote: You DBD::ORacle is way out of data for you DBI try updating to DBD::Oracle 1.26 ans see what happens cheers The error remains the same :( Thanks for all your help. Not sure what else I can do here. -bash-3.00$ cat test.db.pl use

RE: DBI Error: END failed--call queue aborted.

2010-11-18 Thread John Scoles
Ok that cleans it up a little for me. Funny according to the OIC trace you are connecting see below To: dbi-users@perl.org From: mstrum...@gmail.com Subject: Re: DBI Error: END failed--call queue aborted. Date: Wed, 17 Nov 2010 07:50:30 -0800 On Nov 13, 10:19 am, sco...@pythian.com

new development release of DBD::ODBC - 1.26_3

2010-11-18 Thread Martin J. Evans
It turns out an optimization I made in 1.24_2 causes problems and ultimately leads to rebinding columns unnecessarily and leaking memory. 1.26_3 fixes this problem (thanks to Steve Bentley for spotting this). If you are using a development release of DBD::ODBC you are strongly recommended to

Potential problem with DBD::Oracle

2010-11-18 Thread Steve Baldwin
Hi, I ran across an issue recently that appears to have existed for quite some time. Consider the following script ... #!/usr/bin/perl -w use strict; use warnings; use DBI; sub main { my $dbh = DBI-connect( 'dbi:Oracle:', 'usr/p...@conn', '', { PrintError =

Re: Potential problem with DBD::Oracle

2010-11-18 Thread Martin J. Evans
On 18/11/2010 20:15, Steve Baldwin wrote: Hi, I ran across an issue recently that appears to have existed for quite some time. Consider the following script ... #!/usr/bin/perl -w use strict; use warnings; use DBI; sub main { my $dbh = DBI-connect( 'dbi:Oracle:',

Re: Potential problem with DBD::Oracle

2010-11-18 Thread John Scoles
On 18/11/2010 3:15 PM, Steve Baldwin wrote: Ok one more to look at for DBD::Oracle 1.28 Hi, I ran across an issue recently that appears to have existed for quite some time. Consider the following script ... #!/usr/bin/perl -w use strict; use warnings; use DBI; sub main { my $dbh =