RE: Perl Modelues

2004-04-09 Thread Kirti S. Bajwa
Michael: Thanks. It did the trick. Kirti -Original Message- From: Michael Stassen [mailto:[EMAIL PROTECTED] Sent: Thursday, April 08, 2004 6:32 PM To: Kirti S. Bajwa Cc: [EMAIL PROTECTED] Subject: Re: Perl Modelues Kirti S. Bajwa wrote: Ken: Thank you for your response. I tried

RE: Perl Modelues

2004-04-08 Thread Kirti S. Bajwa
-Original Message- From: Rich Allen [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 6:02 PM To: Kirti S. Bajwa Cc: '[EMAIL PROTECTED]' Subject: Re: Perl Modelues you can install Perl modules with $ perl -MCPAN -e shell cpan install [module::name] - hcir mysql - hcir On Apr 7, 2004

Re: Perl Modelues

2004-04-08 Thread Rich Allen
. Kirti -Original Message- From: Rich Allen [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 6:02 PM To: Kirti S. Bajwa Cc: '[EMAIL PROTECTED]' Subject: Re: Perl Modelues you can install Perl modules with $ perl -MCPAN -e shell cpan install [module::name] - hcir mysql - hcir

Re: Perl Modelues

2004-04-08 Thread Ken Menzel
:53 PM Subject: RE: Perl Modelues First a big thanks to Mark, BAO, Beacker, Matthais, Rich Ken for their response. My problem was that I thought that I needed to download tar file to start the installation. Rich's response somewhat cleared that. I ran the following commands, and got

RE: Perl Modelues

2004-04-08 Thread Kirti S. Bajwa
, 2004 3:29 PM To: Kirti S. Bajwa; [EMAIL PROTECTED] Subject: Re: Perl Modelues Hi Kirti, mysql_config tell the perl build module how to link with the driver. The easiest way to fix this is make sure the bin driectory of MySQL is in your path. If you can type 'mysql_config' at the command

Re: Perl Modelues

2004-04-08 Thread Michael Stassen
Kirti S. Bajwa wrote: Ken: Thank you for your response. I tried the 'mysql_config' command and got an error message. I will add 'mysql_config' to the path (if I figure out how!!!). You need to add the directory which contains mysql_config to your path. Adding to your PATH isn't difficult, but

Re: Perl Modelues

2004-04-07 Thread Ken Menzel
Just type in the empty search box at the top of the screen: DBI returns: http://search.cpan.org/~timb/DBI-1.42/DBI.pm mysql returns: http://search.cpan.org/~rudy/DBD-mysql-2.9003/ Hope that helps Ken - Original Message - From: Kirti S. Bajwa [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: Perl Modelues

2004-04-07 Thread Rich Allen
you can install Perl modules with $ perl -MCPAN -e shell cpan install [module::name] - hcir mysql - hcir On Apr 7, 2004, at 10:57 AM, Kirti S. Bajwa wrote: Hello List: I have run into stone wall in figuring out installation of Perl DBI modules with MySQL. When I review the MySQL

Re: Perl Modelues

2004-04-07 Thread Eamon Daly
Short answer: Type 'cpan' Type 'install DBD::mysql' More information is at: http://search.cpan.org/~rudy/DBD-mysql-2.9003/lib/DBD/mysql/INSTALL.pod General information about installing Perl modules: http://www.cpan.org/misc/cpan-faq.html#How_install_Perl_modules

Re: Perl Modelues

2004-04-07 Thread beacker
it mentions that the easiest way to install Perl DBI is to use CPAN. However when I go to the link provided in the documentation http://search.cpan.org, I can't figure out how to find the Perl module. Can someone show me the light. I'm not sure about the light, but when I typed in DBI in the

Re: Perl Modelues

2004-04-07 Thread Mark
Eamon Daly wrote: Short answer: Type 'cpan' Type 'install DBD::mysql' Contrary to intuition, you should install DBI first! DBD::mysql will look for DBI too. - Mark -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:

Re: Perl Modelues

2004-04-07 Thread Mark
BAO RuiXian wrote: Mark wrote: Eamon Daly wrote: Short answer: Type 'cpan' Type 'install DBD::mysql' Contrary to intuition, you should install DBI first! DBD::mysql will look for DBI too. DBI only needs to be installed once. After the installtion, you may need to add as many as