免费注册 查看新帖 |

Chinaunix

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

用perl 访问数据库的问题请教 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-07-26 17:11 |只看该作者 |倒序浏览
$dbh = DBI->connect("DBI:mysql:database=$connmysqldb;host=$SerIp", $conmysqluser, $connmysqlpass);
       $q=qq[ select * from testtable limit 1];
       $sth=$dbh->prepare($q);
       $sth->execute or die $dbh->errstr;
       @result = $sth->fetchrow_array;
       $sth->finish;

问题:当联接mysql数据库失败时,就会有出错信息,并且主体程序也会退出,如何保证主体程序继续正常正常下去。请教各位,谢谢!

论坛徽章:
0
2 [报告]
发表于 2006-07-26 18:05 |只看该作者
prepare

execute

do

都可以检测返回值是否真假
你可以用if语句检测下

或者整体用eval捕获

举例说明:

  1.         $sql = "$LOCK_SQL
  2.             update my_task
  3.                set result = \'$set_result\',
  4.                    flag = run_flag + 1
  5.              where task_id = \'$task_id\'
  6.         ";

  7.         &PrintLog("$sql",'ExecuteJob');

  8.         my $rc = $dbh->do($sql);
  9.         if(!$rc){
  10.             &PrintLog("DB error:".__LINE__." \n".$sql."\n".$dbh->errstr."\n",'ExecuteJob');
  11.             return -1;
  12.         }else{
  13.             &PrintLog("Affect $rc rows.",'ExecuteJob');
  14.         }
  15.         $dbh->commit() or die "commit failed at line ".__LINE__." $!";
复制代码

论坛徽章:
0
3 [报告]
发表于 2006-07-26 18:20 |只看该作者
原帖由 yzjboy 于 2006-7-26 17:11 发表
$dbh = DBI->connect("DBI:mysql:database=$connmysqldb;host=$SerIp", $conmysqluser, $connmysqlpass);
       $q=qq[ select * from testtable limit 1];
       $sth=$dbh->prepare($q);
...


Hi,

the simple way is to put attribute "RaiseError=>0" in DBI->connect():
i.e.:
my $dbh=DBI->connect($dbsrc, $user, $pwd, {RaiseError=>0, PrintError=>0});
if ($dbh) {
    # do DBI handle
} else {
   # do other things
    print "I am still living\n";
}

Best, ulmer

[ 本帖最后由 ulmer 于 2006-7-26 18:23 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2006-07-27 07:23 |只看该作者
可以了,THNKS  ulmer 、aaronvox
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP