####1 安装
wget http://www.cpan.org/modules/by-module/DBI/DBI-1.623.tar.gz
tar -zxvf DBI-1.623.tar.gz
cd DBI-1.623
perl Makefile.PL
make
make install
wget http://www.cpan.org/modules/by-module/DBD/DBD-mysql-4.022.tar.gz
tar zxf DBD-mysql-4.022.tar.gz
cd DBD-mysql-4.022
perl Makefile.PL --mysql_config=/usr/local/mysql/bin/mysql_config
make && make install
####2 测试
#!/usr/bin/perl -w
use strict;
use DBI;
my $dbname="test";
my $location="110.110.110.1";
my $port="3306";
my $database="DBI:mysql:$dbname:$location:$port";
my $dbh = DBI->connect($database,"yeqing","yeqing123456");
my $sth = $dbh->prepare ("select * from test.group");
$sth->execute();
while (my @row = $sth->fetchrow_array()) {
print "=====> @row <=========\n";
}
$sth->finish();
$dbh->disconnect();