Re: DBI.pm

2003-08-29 Thread denis
On Fri, 29 Aug 2003, Sachin Mathur wrote: > Any suggesstion for the following error. > > Can't locate loadable object for module DBI in @INC (@INC contains: > /opt/perl/ActivePerl-5.6//lib /opt/perl/ActivePerl-5.6//lib/site_perl > /home/baalaji/proj1/ETA/auto/etafpgahw_test//scr/PerlLib/ > /u

Re: DBI.pm

2003-08-29 Thread Marius Roets
It is basically looking for the DBI module. DBI is a database independent Perl interface to databases, much like ODBC in the M$ environment. It means that in the program you are trying to run there is a "use DBI;", but Perl can't find the source file DBI.pm in the list of directories. This proba

Re: DBI.pm

2003-08-29 Thread Matthew Harrison
you need to install DBI do # perl -MCPAN -e shell then at the cpan prompt do # install DBI and follow any instructions. On Fri, Aug 29, 2003 at 03:43:47PM +0530, Sachin Mathur wrote: > Any suggesstion for the following error. > > Can't locate loadable object for module DBI in @INC (@INC co

Re: DBI.pm

2003-08-14 Thread Wiggins d'Anconia
awards wrote: Hi, I had problem installing modules with windows one way and the best way I did for me is to install via a very little program I made in perl here is the code Three lines of code #!/usr/bin/perl use CPAN; shell(); For future reference the above 3 lines equate to: perl -MCPAN -e she

Re: DBI.pm

2003-08-14 Thread awards
Hi, I had problem installing modules with windows one way and the best way I did for me is to install via a very little program I made in perl here is the code Three lines of code #!/usr/bin/perl use CPAN; shell(); after running the program you will have cpan> and type install DBI and wait. to f

RE: DBI.pm

2003-08-14 Thread NYIMI Jose (BMB)
1. First of all upgrade your perl it's too old (perl is now up to 5.8). 2. to got http://www.activestate.com/Products/Download/Download.plex?id=ActivePerl and click on MSI 3. do not forget to set properly your PATH to contain C:\Perl\bin if you have installed perl under C:\Perl like most of pe

RE: DBI.pm on perl-5.6.0

2001-05-30 Thread Chris Lott
I would guess that it needs a newer version. 5.6.1 is the current version... on my machine at least: C:\>perl -v This is perl, v5.6.1 built for MSWin32-x86-multi-thread (with 1 registered patch, see perl -V for more detail) c

Re: DBI.pm on perl-5.6.0

2001-05-30 Thread kosta
> On Tue, May 29, 2001 at 05:24:07PM +0400, kosta wrote: > > Can I have DBI package installed on the following build of perl: > > ActiveState perl-5.6.0, MSWin32-x86-multi-thread? > > Yes. You probably want to use ActiveState's PPM installation utility. > > At the command prompt, type 'ppm

Re: DBI.pm on perl-5.6.0

2001-05-29 Thread Adam Turoff
On Tue, May 29, 2001 at 05:24:07PM +0400, kosta wrote: > Can I have DBI package installed on the following build of perl: > ActiveState perl-5.6.0, MSWin32-x86-multi-thread? Yes. You probably want to use ActiveState's PPM installation utility. At the command prompt, type 'ppm'. At the 'pp