Re: Can't locate loadable object for module DBI in

2010-02-16 Thread Martin Evans
Amit.Nagpure wrote: > Hi > I am getting the below error while executing the perl on AIX. > The error is below pasted. > > Can't locate loadable object for module DBI in @INC (@INC contains: > /usr/opt/perl5/lib/5.8.2/aix-thread-multi /usr/opt/perl5/lib/5.8.2 > /usr/opt/perl5/lib/site_perl/5.8.2/

Re: Can't locate loadable object for module DBI in

2006-09-07 Thread Clive Eisen
Sunil A V wrote: > Hi, > > I have a properly installed and working DBI/DBD::Oracle on Sun Solaris Unix > box 'A'. While installing this, I had used INSTALLIBDIR option which > created > all my lib and DBI.pm and DBD.pm in the directory I mentioned. I have > working perl programs using these DBI/DB

RE: Can't locate loadable object for module DBI

2002-05-24 Thread Sterin, Ilya
Look at the FAQ for similar stuff... www.xmlproj.com/dbi/faq.html Ilya -Original Message- From: Tom Waitman To: [EMAIL PROTECTED] Sent: 5/23/02 11:26 PM Subject: Can't locate loadable object for module DBI I'm a new Linux user, new to MySQL, etc. I have recently installed a new system

RE: Can't locate loadable object for module DBI

2002-05-24 Thread Tompkins, Creigh
I believe you want the directories dbd and dbi to be uppercase. Here is a snapshot of our structure on a RH 7.2 box: drwxr-xr-x3 root root 4096 Dec 11 08:09 Apache -r--r--r--1 root root35434 May 1 2001 Apache.pm drwxr-xr-x 29 root root 4096 Mar 31

RE: Can't locate loadable object for module DBI in @INC

2001-10-31 Thread Sterin, Ilya
27;'[EMAIL PROTECTED] ' ' Sent: 10/31/01 5:47 AM Subject: Re: Can't locate loadable object for module DBI in @INC I'm sorry to keep cluttering up the list with my ignorance, but I can't seem to get this working. From a CPAN shell, I've tried "install DBI&

Re: Can't locate loadable object for module DBI in @INC

2001-10-31 Thread Jake Hoban
drwxr-x--- 11 root root 4096 Oct 30 17:21 auto drwxr-x---2 root root 4096 Oct 29 17:45 DBI -r-xr-xr-x1 root root67395 Oct 29 17:45 DBI.so I see what you mean - if I try running the script as root I don't get the message about no loadable modules. I

Re: Can't locate loadable object for module DBI in @INC

2001-10-31 Thread Ronald J Kimball
On Wed, Oct 31, 2001 at 02:23:24PM +, Jake Hoban wrote: > I don't think that's it. > > DBI.pm is in > /usr/local/lib/perl5/5.6.1/i686-linux > and DBI.so is in > /usr/local/lib/perl5/site_perl/5.6.1/i686-linux/auto/DBI Who is the owner, and what are the permissions, for /usr/local/lib/perl5/s

Re: Can't locate loadable object for module DBI in @INC

2001-10-31 Thread Jake Hoban
I don't think that's it. DBI.pm is in /usr/local/lib/perl5/5.6.1/i686-linux and DBI.so is in /usr/local/lib/perl5/site_perl/5.6.1/i686-linux/auto/DBI Jake Ronald J Kimball wrote: > On Wed, Oct 31, 2001 at 12:47:14PM +, Jake Hoban wrote: > >> I'm sorry to keep cluttering up the list with m

Re: Can't locate loadable object for module DBI in @INC

2001-10-31 Thread Ronald J Kimball
On Wed, Oct 31, 2001 at 12:47:14PM +, Jake Hoban wrote: > I'm sorry to keep cluttering up the list with my ignorance, but I can't > seem to get this working. From a CPAN shell, I've tried "install DBI", > "recompile DBI" and pretty much anything else I could think of. Whenever > I run a scr

Re: Can't locate loadable object for module DBI in @INC

2001-10-31 Thread Jake Hoban
ause of some older perl > version incompatibility that might exist. > > Ilya > > -Original Message- > From: Jake Hoban > To: Sterin, Ilya > Cc: '[EMAIL PROTECTED] ' > Sent: 10/30/01 9:56 AM > Subject: Re: Can't locate loadable object for module D

RE: Can't locate loadable object for module DBI in @INC

2001-10-30 Thread Sterin, Ilya
some older perl version incompatibility that might exist. Ilya -Original Message- From: Jake Hoban To: Sterin, Ilya Cc: '[EMAIL PROTECTED] ' Sent: 10/30/01 9:56 AM Subject: Re: Can't locate loadable object for module DBI in @INC Thanks! I think you must have found the answer,

Re: Can't locate loadable object for module DBI in @INC

2001-10-30 Thread Jake Hoban
Thanks! I think you must have found the answer, because that's certainly true. I was using perl 5.6.0 until yesterday - I'm sorry, I should have mentioned that before. DBI was installed while I was still running 5.6.0, it was actually in the process of trying to fix something else that I ended

Re: Can't locate loadable object for module DBI in @INC

2001-10-30 Thread Jake Hoban
Yes, they all exist with the right permissions. I just tried changing the ownership to that of the user trying to run the script, but that didn't work, so I changed it right back! Wilson, Doug wrote: >> From: Jake Hoban [mailto:[EMAIL PROTECTED]] >> >> Can't locate loadable object for module

Re: Can't locate loadable object for module DBI in @INC

2001-10-30 Thread Jake Hoban
No, it's not that. The shebang says #!/usr/bin/perl, and "which perl" returns the same path - although I've actually got it installed at /usr/local/bin/perl as well (that was one of the options during the installation). [EMAIL PROTECTED] wrote: > In your script's shebang line, are you perhap

RE: Can't locate loadable object for module DBI in @INC

2001-10-30 Thread Sterin, Ilya
This is because the script you are using is run with a different perl version that was used to install DBI. Also you might of installed DBI in a non standard directory, which will not append it to @INC. See perldoc perlvar for more info on @INC. Ilya -Original Message- From: Jake Hoban

RE: Can't locate loadable object for module DBI in @INC

2001-10-30 Thread Wilson, Doug
> From: Jake Hoban [mailto:[EMAIL PROTECTED]] > > Can't locate loadable object for module DBI in @INC (@INC contains: > /usr/local/lib/perl5/5.6.1/i686-linux /usr/local/lib/perl5/5.6.1 > /usr/local/lib/perl5/site_perl/5.6.1/i686-linux > /usr/local/lib/perl5/site_perl/5.6.1 > /usr/local/lib/p

Re: Can't locate loadable object for module DBI in @INC

2001-10-30 Thread Jeff Seger
In your script's shebang line, are you perhaps using: #!/usr/local/bin/perl ? Try a "which perl" from the command line and see if it varies from your shebang line. Perhaps /usr/bin/perl? Jake Hoban wrote: > Hi > > I'm new to this list, but I've looked through the archives before > posting and

Re: "Can't locate loadable object for module DBI "

2001-08-07 Thread Veeresh
g" <[EMAIL PROTECTED]> To: "'Veeresh'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, August 08, 2001 4:32 AM Subject: RE: "Can't locate loadable object for module DBI " > > Then I installed the DBI.pm as per instructions in the

RE: "Can't locate loadable object for module DBI "

2001-08-07 Thread Neil Lunn
>-Original Message- >From: Veeresh [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, August 08, 2001 2:07 AM >To: [EMAIL PROTECTED] >Subject: "Can't locate loadable object for module DBI " > >Then I installed the DBI.pm as per instructions in the >website.The following > is the result > >Ca

RE: "Can't locate loadable object for module DBI "

2001-08-07 Thread Sterin, Ilya
Means that it either didn't install fine, or it's not located in @INC, so possibly you are either installing it in a different location, under a different perl installation, than what your script is run with, or you are messing you your @INC. Ilya > -Original Message- > From: Veeresh [ma

RE: "Can't locate loadable object for module DBI "

2001-08-07 Thread Sterin, Ilya
August 07, 2001 7:02 PM > To: 'Veeresh'; [EMAIL PROTECTED] > Subject: RE: "Can't locate loadable object for module DBI " > > > > Then I installed the DBI.pm as per instructions in the > > website.The following > > is the result > > > &g

RE: "Can't locate loadable object for module DBI "

2001-08-07 Thread Wilson, Doug
> Then I installed the DBI.pm as per instructions in the > website.The following > is the result > > Can't locate loadable object for module DBI in @INC (@INC As per what instructions in what website. It still looks like an incorrect installation of DBI. Did you make/make test/make install o