bellcat2008bellcat2008.blog.chinaunix.net
bellcat2008
全部博文(137)
字符编码encoding(3)
makefile(0)
编译安装(8)
SHELL编程(3)
2015年(2)
2013年(1)
2012年(6)
2011年(5)
2010年(62)
2009年(61)
jjx_1996
lishuang
Bsolar
yxinxin1
zf199202
qq151984
TTL0to25
piscescy
Lorylll
分类: Mysql/postgreSQL
2010-05-17 17:23:18
#!/usr/bin/perl # PERL MODULES WE WILL BE USING use DBI; use DBD::mysql; # HTTP HEADER print "Content-type: text/html \n\n"; # CONFIG VARIABLES $platform = "mysql"; $database = "mydb"; $host = "192.168.0.36"; $port = "3308"; $tablename = "test_table"; $user = "root"; $pw = "root";
#DATA SOURCE NAME $dsn = "dbi:mysql:$database:192.168.0.36:3308";
# PERL DBI CONNECT $DBIconnect = DBI->connect($dsn, $user, $pw);
上一篇:学习mysql manual5.0 Chapter 7. Optimization
下一篇:XML
登录 注册