RE: DBI error

2011-02-24 Thread Nguyen, Andrew
make make test make install -Original Message- From: Matthew Ramadanovic [mailto:matthew.ramadano...@yale.edu] Sent: Tuesday, February 22, 2011 6:37 AM To: Nguyen, Andrew; dbi-users@perl.org Subject: RE: DBI error Have you made sure your environment points

Re: DBI error

2011-02-22 Thread Martin J. Evans
On 21/02/11 19:14, Nguyen, Andrew wrote: Hi, I am Andrew Nguyen with Pacific Life. We are using Perl DBI-1.28 in Oracle 8.1.7 for many years. We just upgraded our Oracle to 10.2.0. And now the DBI does not work anymore.Please advise what to do. Thank you in advance for your help.

RE: DBI error

2011-02-22 Thread Stacy.Mader
Have you recompiled DBI against 10.2.0.4? From: Nguyen, Andrew [andrew.ngu...@pacificlife.com] Sent: Tuesday, 22 February 2011 6:14 AM To: 'dbi-users@perl.org' Subject: DBI error Hi, I am Andrew Nguyen with Pacific Life. We are using Perl DBI-1.28 in

RE: DBI error

2011-02-22 Thread Matthew Ramadanovic
[mailto:stacy.ma...@csiro.au] Sent: Tuesday, February 22, 2011 4:55 AM To: andrew.ngu...@pacificlife.com; dbi-users@perl.org Subject: RE: DBI error Have you recompiled DBI against 10.2.0.4? From: Nguyen, Andrew [andrew.ngu...@pacificlife.com] Sent: Tuesday, 22

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

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

2010-11-13 Thread i5mast
On Nov 12, 8:24 am, sco...@pythian.com (John Scoles) wrote: If you can run this with dbd_verbose=15 on the connect string  the post the results it my help us find an answer. Cheers John Scoles John, I added dbd_verbose but that didn't print any debugging info :( DBI-connect(

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

2010-11-13 Thread John Scoles
Well nothing in that pops out at me. You DBD::ORacle is way out of data for you DBI try updating to DBD::Oracle 1.26 ans see what happens cheers On Fri, Nov 12, 2010 at 3:49 PM, i5mast mstrum...@gmail.com wrote: On Nov 12, 8:24 am, sco...@pythian.com (John Scoles) wrote: If you can run

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

2010-11-12 Thread John Scoles
On 10/11/2010 11:11 AM, i5mast wrote: If you can run this with dbd_verbose=15 on the connect string the post the results it my help us find an answer. Cheers John Scoles I'm using Solaris 10 sparc, Perl 5.8.4, DBI 1.615, instantclient 10.1.0.5, DBD::Oracle 1.16. I compiled and installed

Re: DBI error

2009-09-01 Thread Thiago Rondon
Probably you mixed two DBI installations. The 1.40 version may be incomplete, but at least some libraries survived and exist in a directory that is searched before directory where the 1.42 librarys exist. If you install the DBI modules from a package manager (like apt-get, rpm), try to

Re: DBI error

2008-02-05 Thread Bart Lateur
On Tue, 29 Jan 2008 13:44:16 -0700, Kirthi Prabhu wrote: I get the pg.pm file and I have placed that in DBD/ folder. Generally not a good sign... When I use DBI - Connect I get the following error install_driver(Pg) failed: Can't locate loadable object for module DBD::Pg in @INC I was

RE: DBI - error

2006-11-07 Thread Garrett, Philip \(MAN-Corporate\)
Sumitra Gatade wrote: Hi, I am trying to execute the stored procedure using dbh. The procedure details are as follows: proc_dequeue( BALID,strRequestXML,strStatus) where: BALID - Integer, strRequestXML - XMLType, strStatus - varchar The perl script implemented is : my $sth =

RE: DBI - error

2006-11-07 Thread Reidy, Ron
This is not a DBI or a perl issue. Read your error stack and resolve your Oracle issue. -- Ron Reidy Lead DBA Array BioPharma, Inc. -Original Message- From: Sumitra Gatade [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 07, 2006 6:01 AM To: dbi-users@perl.org Subject: DBI - error

RE: [dbi] error string being lost in DBD::ODBC

2005-08-02 Thread Martin J. Evans
Adam, Have you tried: odbc_async_exec Allow asynchronous execution of queries. Right now, this causes a spin-loop (with a small sleep) until the sql is complete. This is useful, however, if you want the error handling and asynchronous messages

Re: DBI error handling

2003-02-26 Thread Michael Houghton
Howdy! On Tue, Feb 25, 2003 at 09:46:07PM +, Tim Bunce wrote: On Tue, Feb 25, 2003 at 03:14:24PM -0500, Michael Houghton wrote: Howdy! I'm trying to write a WARN handler for an Informix application. I want to be able to get to stuff in the SQLCA, which, if I read things correctly,

Re: DBI error handling

2003-02-25 Thread Jonathan Leffler
Michael Houghton wrote: I'm trying to write a WARN handler for an Informix application. I want to be able to get to stuff in the SQLCA, which, if I read things correctly, means I need the statement handle for the offending action. I have not figured out how to get that without resorting to a

Re: DBI Error

2002-08-18 Thread Michael A Chase
On Sat, 17 Aug 2002 23:09:30 -0400 WAZA,SANJAY (Non-HP-PaloAlto,ex1) [EMAIL PROTECTED] wrote: I am running this simple script on HP UX 11.0 (64 BIT) . The database is Oracle 9.2.0 #!/opt/perl5.6.1/bin/perl #!/opt/perl5.6.1/bin/perl -w use DBI; # -w and 'use strict;' show you small

Re: DBI Error

2002-08-18 Thread Michael A Chase
On Sun, 18 Aug 2002 13:23:28 -0400 WAZA,SANJAY (Non-HP-PaloAlto,ex1) [EMAIL PROTECTED] wrote: I changed the script as you suggested #!/opt/perl5.6.1/bin/perl -w use strict; use DBI; my $dbh = DBI-connect( 'dbi:Oracle:p1db', 'partner1',

RE: DBI Error

2002-08-18 Thread WAZA,SANJAY (Non-HP-PaloAlto,ex1)
, SETHU (Non-HP-SantaClara, ex2) Subject: Re: DBI Error On Sun, 18 Aug 2002 13:23:28 -0400 WAZA,SANJAY (Non-HP-PaloAlto,ex1) [EMAIL PROTECTED] wrote: I changed the script as you suggested #!/opt/perl5.6.1/bin/perl -w use strict; use DBI; my $dbh = DBI-connect( 'dbi:Oracle:p1db

Re: DBI Error

2002-04-18 Thread myusufe
Your DBI have error in line 223. check it, may be permition problem.. On 17 Apr 2002 21:08:07 -0500 Aguztyn Garcia-Cruz [EMAIL PROTECTED] wrote: I have Red Hat 7.2 I already Install DBI, DBD::Pg but I get this error Can't locate loadable object for module DBI in @INC (@INC contains:

RE: DBI Error

2002-04-18 Thread Sterin, Ilya
Did you install it under the same perl that you are running the script with? If you have two or more perl installs on that machine, that might of been the problem. Make sure you install and use the same one (ie, use full path). Ilya -Original Message- From: Aguztyn Garcia-Cruz To:

Re: DBI error

2002-03-25 Thread Henry McGuinness
See http://www.gossamer-threads.com/forum/Products_C9/Gossamer_Mail_C3/Gossamer_Mail_Discussion_F11/DBI_Confusion_P151183/ for one discussion of a similar error message. (Otherwise have you loaded Apache::DBI before DBI in your config/startup files? If not you may have problems?) HTH Henry

RE: DBI error on Solaris x86

2002-03-05 Thread Stephen Gill
Found this in the DBI docs... --- If you get an error like fatal: relocation error: symbol not found: using gcc 3.x then try not using GNU as or GNU ld on Solaris. I will try some other version of ld. -- steve -Original Message- From: Stephen Gill [mailto:[EMAIL PROTECTED]] Sent:

RE: DBI error on Solaris x86

2002-03-05 Thread Stephen Gill
Using a non-GNU ld does not seem to fix the problem. Still getting the same errors. Any ideas? (/usr/ucb/ld). -- steve -Original Message- From: Stephen Gill [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 05, 2002 6:21 AM To: 'Stephen Gill'; '[EMAIL PROTECTED]' Subject: RE: DBI

Re: DBI error on Solaris x86

2002-03-05 Thread John D Groenveld
Using a non-GNU ld does not seem to fix the problem. Still getting the same errors. Any ideas? (/usr/ucb/ld). That should be /usr/ccs/bin/ld. Reading specs from /opt/gnu/lib/gcc-lib/i386-pc-solaris2.7/2.95.3/specs $ gcc -v gcc version 2.95.3 20010315 (release) $ ldd

Re: DBI error 127 no cc? HELP PLEASE

2002-01-04 Thread Mark Thornber
Michael, You need to compile DBI with the same compiler that compiled your version of Perl. In your case - Sun's cc. Alternatively you could install the package of Perl 5.6 from www.sunfreeware.com (compiled using gcc) and then compile DBI using gcc. (AFAIKR Solaris 8 perl is in /usr/bin,

Re: DBI error 127 no cc? HELP PLEASE

2002-01-03 Thread David M. Lloyd
On Thu, 3 Jan 2002, -Michael Novak- wrote: Howdy All. And Thanx for read'en this.. And A real Big thank you in advance for any on that can throw a little bit of help my way! I am having trouble installing the DBI mod on a SunOS 5.8 with perl version 5.005_03 During My Make Cmd I get

RE: DBI error 127 no cc? HELP PLEASE

2002-01-03 Thread LBaxter
First, you need to build your own perl... (using the version delivered with the OS almost never works, unless of have exactly the same cc that the OS vender used). You need to have either, some flavor of (ansi) cc or gcc to do it. I am about to do this on Sun0S 5.8 in the next few days...

Re: dbi error

2001-11-26 Thread Simon Oliver
Godoli Davide wrote: Ok, now I've already installed DBI-1_20 on my system, and when try to install DBD::ODBC I get: Did you really install DBI as well as DBD::ODBC? Try this: D:\perl -MDBI -e print $DBI::VERSION; 1.20 If you get: Can't locate DBI.pm in @INC (@INC contains: C:/Perl/lib

RE: DBI error expected but didn't get any

2001-06-01 Thread f . n . postma
Datacenter, SDU Unix Support -Oorspronkelijk bericht- Van: Tim Bunce [mailto:[EMAIL PROTECTED]] Verzonden: vrijdag 1 juni 2001 11:24 Aan: [EMAIL PROTECTED] CC: [EMAIL PROTECTED] Onderwerp: Re: DBI error expected but didn't get any First try rebuilding DBD::Oracle if it wasn't built

Re: DBI error expected but didn't get any

2001-06-01 Thread Tim Bunce
On Fri, Jun 01, 2001 at 12:18:55PM +0200, [EMAIL PROTECTED] wrote: Tim, Is my assumption correct that either: OCIStmtPrepare or OCIStmtExecute should return an error of some sort ?? I'd expect OCIStmtExecute to return OCI_ERROR or OCI_SUCCESS_WITH_INFO. But since the update says it