[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] DBI on RAQ3
on 5/29/00 7:31 AM, Hans van Kilsdonk at hans@xxxxxxxxxxxxxx wrote:
> Hi !
>
> I've searched the cobalt list archives for this, but I could not find the
> answer ;(.
>
> I want to use the DBI module on the RAQ3i, so I can access MySQL using Perl.
> I already installed this module on our RAQ2 using the package on Cobalt's
> FTP site.
>
> But, that package is not for the RAQ3i. Can someone tell me how I can
> install the DBI module on our RAQ3i?
You can just use
perl -MCPAN -e "install DBI::DBI"
I think that's the syntax, or you can go to
http://www.cpan.org/modules/by-module/DBI snag DBI-1.13.tar.gz
tar zxf DBI-1.13.tar.gz
cd DBI-1.13
./Makefile.pl
make
make test
make install
u r done.
But to be able to access mysql+msql you need to have that module as well.
http://cpan.valueclick.com/modules/by-category/07_Database_Interfaces/Mysql/
get the latest version, same deal as above, and thats it.
-k