| Question : | Installing MySQL Perl Modules DBI | |
| | Answer : | Correct/Updated as of 25/01/2007
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.53.tar.gz
tar -pxzf DBI-1.53.tar.gz
cd DBI-1.53
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
| | |