| > |
PHPFAQ - Installing MySQL Perl Modules DBI |
[Bookmark it] |
|
|
| PHPFAQ - Installing MySQL Perl Modules DBI |
|
Question : Installing MySQL Perl Modules DBIAnswer :Correct/Updated as of 02/10/2004
We do this from source, check http://search.cpan.org for latest versions.
wget http://search.cpan.org/CPAN/authors/id/I/IL/ILYAM/Data-Dumper-2.121.tar.gz
tar -pxzf Data-Dumper-2.121.tar.gz
cd Data-Dumper-2.121
perl Makefile.PL
make
make test
make install
cd ..
wget http://search.cpan.org/CPAN/authors/id/T/TI/TIMB/DBI-1.43.tar.gz
tar -pxzf DBI-1.43.tar.gz
cd DBI-1.43
perl Makefile.PL
make
make test
make install
cd ..
wget http://search.cpan.org/CPAN/authors/id/J/JW/JWIED/Msql-Mysql-modules-1.2219.tar.gz
tar -pxzf Msql-Mysql-modules-1.2219.tar.gz
cd Msql-Mysql-modules-1.2219
#To do this you need a MySQL running using localhost (/tmp/mysql.sock)
perl Makefile.PL
make
make install
|
|
|
|
|
|
|