Problems installing DBD::Mysql

2003-02-22 Thread Alex Agerholm
Hi Can anybody help me I have a problem installing DBD::Mysql on a windows XP machine. Running ppm install DBD::mysql returns the message "Read a PPD for 'DBD-mysql' but it is not intended for this build of Perl (MSWin32-x86-multi-thread) Thanks Alex -- To unsubscribe,

Re: Error installing DBD::Mysql

2003-01-27 Thread aa
o your path. If you installed from binaries, did you install the mysql-devel package? It appears that 'mysql_config' can't be found which is used to set a number of parameters for the build process. http://danconia.org aa wrote: Hi, I am trying to install DBD::Mysql and I am

Re: Error installing DBD::Mysql

2003-01-26 Thread Wiggins d'Anconia
d it you may need to add it to your path. If you installed from binaries, did you install the mysql-devel package? It appears that 'mysql_config' can't be found which is used to set a number of parameters for the build process. http://danconia.org aa wrote: Hi, I am trying to

Error installing DBD::Mysql

2003-01-26 Thread aa
Hi, I am trying to install DBD::Mysql and I am getting error, I am new to perl and modules, here is the screen print, I'll appreciate any help please. CPAN.pm: Going to build J/JW/JWIED/DBD-mysql-2.1024.tar.gz Can't exec "mysql_config": No such file or directory at M

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-19 Thread Wiggins d'Anconia
; >>>>>from a user's perspective, they are the same but they are not under the >>>> >>>>>hood. what happen is that that push statement is a run time statement. >>>>>the use lib statement is a compile time statement. don't confuse the 2

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-19 Thread David Zhuo
;>>hood. what happen is that that push statement is a run time statement. > >>>the use lib statement is a compile time statement. don't confuse the 2. > >>>to avoid run-time error, use lib is best. otherwise, the push statement > >>>can be used. > >

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-19 Thread Wiggins d'Anconia
lib is best. otherwise, the push statement >>>can be used. >>> >>>david >>> >>>On Mon, 2002-08-19 at 12:18, Connie Chan wrote: >>> >>> >>>>or can try >>>> >>>>push @INC, 'the/path/you/want

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-19 Thread David Zhuo
> > david > > > > On Mon, 2002-08-19 at 12:18, Connie Chan wrote: > > > >>or can try > >> > >>push @INC, 'the/path/you/want'; > >> > >>Rgds, > >>Connie > >> > >>- Original Message - > >&g

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-19 Thread Wiggins d'Anconia
n be used. > > david > > On Mon, 2002-08-19 at 12:18, Connie Chan wrote: > >>or can try >> >>push @INC, 'the/path/you/want'; >> >>Rgds, >>Connie >> >>- Original Message - >>From: "root" <[EMA

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-19 Thread David Zhuo
Message - > From: "root" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Tuesday, August 20, 2002 2:19 AM > Subject: Re: Can't locate loadable object DBD::mysql in @INC > > > > to force @INC to look at the directory o

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-19 Thread Connie Chan
or can try push @INC, 'the/path/you/want'; Rgds, Connie - Original Message - From: "root" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, August 20, 2002 2:19 AM Subject: Re: Can't locate loadable object DBD::mysql in @INC > to for

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-19 Thread root
to force @INC to look at the directory of your DBI library, use: use lib "your DBI directory" along the top of your script david -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-17 Thread Nik
. perl -MCPAN -e 'install DBI' perl -MCPAN -e 'install DBD::mysql'

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-17 Thread Wiggins d'Anconia
Changing @INC would work, but to save yourself hassle later and possibly to avoid further problems you might consider upgrading/re-installing DBI, and DBD-mysql through CPAN as well, as that should fix the problems and keep your CPAN installation contiguous, aka you upgraded Perl through CPAN

Can't locate loadable object DBD::mysql in @INC

2002-08-17 Thread Nik
Hello Everyone, We are attempting to use a Perl script to access MySQL on Red Hat Linux release 7.2 (Enigma) Kernel 2.4.7-10 on an i686 Unfortunately, the below error keeps appearing: - install_driver(mysql) failed: Can't locate loadable object for module DBD::mys

RE: DBD mysql

2002-04-10 Thread Steven Vargas
Probably, it's your query. Should be DBD::Mysql Also, you're using the DBI module to interface with the DBD::mysql, right? If not, download it and install it and give it a try. There should also be a Perl mailinglist for it ([EMAIL PROTECTED], or something close) that you can get help

DBD mysql

2002-04-10 Thread Bob T
WinXP... ActivePerl 5.6.. weight 180lb Thanks for the Win help( strange Territory) ... I'm a Unix guy :-) I found and installed DBD:mysql.ppm and installed the mod with a command line call per PPM.. However a ppm query * of my Win Perl install shows all my modules except DBD:mysql... Yet my

Re: binaries of DBI, DBD::mysql, CGI

2001-06-19 Thread Aaron Craig
> > HTML and the Database. Now I want to use Perl as language that does the > > cgi-stuff. I know, I ought to use the modules DBI, DBD::mysql and CGI, > > but my test-server runs on my desktop-pc with windows on it. As the > > modules come as sourcecode, i would have to

Re: binaries of DBI, DBD::mysql, CGI

2001-06-15 Thread Roger C Haslock
- From: "Georg Lange" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, June 15, 2001 5:15 PM Subject: binaries of DBI, DBD::mysql, CGI > Hello list, > > maybe this is a bit off-topic, sorry! > > I would like to creat

Re: binaries of DBI, DBD::mysql, CGI

2001-06-15 Thread Christopher Zukowski
>cgi-stuff. I know, I ought to use the modules DBI, DBD::mysql and CGI, >but my test-server runs on my desktop-pc with windows on it. As the >modules come as sourcecode, i would have to compile them to use them. My >questions are: >Is there anybody who has already tried this? >

binaries of DBI, DBD::mysql, CGI

2001-06-15 Thread Georg Lange
w, I ought to use the modules DBI, DBD::mysql and CGI, but my test-server runs on my desktop-pc with windows on it. As the modules come as sourcecode, i would have to compile them to use them. My questions are: Is there anybody who has already tried this? (is it worth trying?) Is there maybe s