- 论坛徽章:
- 0
|
原帖由 IT-庸才 于 2009-7-15 18:31 发表 ![]()
总是提示“execute()”这边出错,我是小菜鸟,大家帮我看看,谢谢~
#!/usr/bin/perl -w
use DBI;
my ($db, $st,@rowarray);
# create database connection
$db = DBI->connect("DBI:mysql:databases=dat ...
wrong :
>$db = DBI->connect("DBI:mysql:databases=databasesname; host=localhost","user","passwd") or die $DBI::errstr;
should be: database (no pl. with s)
correct dsn string should be:
DBI:mysql:database=YOUR_EARLDB_NAME; host=HOST_YOU_WANT_TO_CONNECT, REAL_DB_USER, REAL_PASSWORD
wrong:
>$st = $db->prepare("select * from TABLENAME where user=name") or die $DBI::errstr;
is yout table really called TABLENAME?
isi your fieldname really called user?
pls read perldoc DBD::mysql
perl -e 's/IT-庸才/IT-人才/'
[ 本帖最后由 ulmer 于 2009-7-15 19:37 编辑 ] |
|