1.安裝ActivePerl-5.20
ActivePerl v5.24版本以後ppm跟minGW不支援 所以選擇前版本
ActivePerl-5.20
2.打開命令提示字元(cmd)來安裝DBD
輸入指令
ppm install DBD-mysql
3.確認是否有安裝成功
創建perl檔
use DBI;
user="root";passwd="root";
dbh="";dbh = DBI->connect("dbi:mysql:database=shit;host=127.0.0.1;port=3306",user,passwd) or die "can't connect to
database ". DBI-errstr;
sth=dbh->prepare("select * from fat");
sth->execute;
while (@recs=sth->fetchrow_array) {
print recs[0].":".recs[1].":".recs[2].":".recs[3]."\n";
}
$dbh->disconnect;
4.MySQL的一些參數
到phpMyAdmin後台>使用者帳號 必須跟前台開起資料庫的密碼一致