免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1680 | 回复: 8
打印 上一主题 下一主题

运行时提示出错,纳闷~大家帮我看看啊(已解决) [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-15 18:31 |只看该作者 |倒序浏览
总是提示“execute()”这边出错,我是小菜鸟,大家帮我看看,谢谢~

#!/usr/bin/perl -w
use DBI;
my ($db, $st,@rowarray);
# create database connection
$db = DBI->connect("DBI:mysql:databases=databasesname; host=localhost","user","passwd") or die $DBI::errstr;
# execute SELECT
$st = $db->prepare("select * from TABLENAME where user=name") or die $DBI::errstr;
$st->execute() or die $DBI::errstr;
# resultset
while(@rowarray = $st->fetchrow_array())
        {
        foreach my $column (@rowarray)
                {
                if (!defined($column))
                        {
                        $column = "NULL";
                        }
                }
        print "@rowarray\n";
        }
$st->finish();
$db->disconnect();

DBD::mysql::st execute failed: No database selected at ./ceshi.pl line 7.
No database selected at ./ceshi.pl line 7.

[ 本帖最后由 IT-庸才 于 2009-7-16 17:42 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2009-07-15 18:51 |只看该作者

回复 #1 IT-庸才 的帖子

错误发出来啊!

论坛徽章:
0
3 [报告]
发表于 2009-07-15 18:55 |只看该作者

回复 #2 Perl_Er 的帖子

刚我把错误提示放上去了,兄弟帮看一下哦

论坛徽章:
0
4 [报告]
发表于 2009-07-15 19:33 |只看该作者
原帖由 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 编辑 ]

论坛徽章:
0
5 [报告]
发表于 2009-07-15 19:38 |只看该作者

回复 #4 ulmer 的帖子

ulmer 兄就是这个问题……刚改了一下就可以了,你是怎么检查出来的??

论坛徽章:
0
6 [报告]
发表于 2009-07-15 19:49 |只看该作者

回复 #5 IT-庸才 的帖子

错误都这么报了啊,"No database selected"

论坛徽章:
0
7 [报告]
发表于 2009-07-15 19:50 |只看该作者
原帖由 ulmer 于 2009-7-15 19:33 发表


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:
D ...

太败兴了,平时databases写习惯了~不自觉的就多加了个‘s’

论坛徽章:
0
8 [报告]
发表于 2009-07-15 19:52 |只看该作者

^_^

谢谢两位大哥的帮忙~

论坛徽章:
0
9 [报告]
发表于 2009-07-15 20:41 |只看该作者
原帖由 IT-庸才 于 2009-7-15 19:52 发表
谢谢两位大哥的帮忙~

不谢, 请两位大哥喝咖啡.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP