免费注册 查看新帖 |

Chinaunix

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

线程问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-02-08 15:49 |只看该作者 |倒序浏览
下面代码有什么问题,为什么执行的时候报错:can't create thread:No such file or directory
在sub updateData中不加while循环又不报错,为什么呢?
for(my $i=0;$i<$thread_num;$i++) {
        $threadlist[$i]=threads->create("updateData",$account[$i]) or die "can't create thread:$!\n";
}
foreach (@threadlist) {
        $_->join() or die "can't create thread:$!\n";
}
sub updateData($) {
my $tmpaccount=shift;
my $run_num=2;
# 线程循环执行存储过程
my $j=0;
while($j<$run_num) {
my $key=getKey();
my $number=getPrice();
my $item=getItem($number);
$key=~s/\n//g;
$tmpaccount=~s/\n//g;
my $user="cpc";
my $passwd="sogouad";
my $dbh = DBI->connect("dbi:Oracle:host=192.168.41.50;sid=search",$user,$passwd);
my $string="update key set $item where i_account_id=$tmpaccount and c_key='$key'";
print $string,"\n";
my $update;
#my $sth=$dbh->prepare($string);
$dbh->do($string);
# 执行存储过程
my $sth=$dbh->prepare("BEGIN key_price_reset(?,?);END;");
$sth->bind_param( 1,$key);
$sth->bind_param_inout( 2, \$update, 1000 );
$sth->execute();
$sth->finish();
$dbh->disconnect();
$j++;
}
}

[ 本帖最后由 herolyh 于 2007-2-8 15:50 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2007-02-08 18:23 |只看该作者
帮忙看一下

论坛徽章:
0
3 [报告]
发表于 2007-02-08 21:10 |只看该作者
No such file or directory...

这个报错没遇到过。。

楼主能不能试试,把数据库相关的东西从循环里面移掉,看看还出错不

论坛徽章:
0
4 [报告]
发表于 2007-02-09 16:13 |只看该作者
把die去掉就好了!
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP