免费注册 查看新帖 |

Chinaunix

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

CGI中使用DB_File的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-03-27 10:10 |只看该作者 |倒序浏览
#!/usr/bin/perl -w

use strict;
use DB_File;
use CGI qw(:standard);

my ($filename,$x,%hash,$key,$value,$status);

$filename="test";
unlink $filename;
$DB_BTREE->{'flags'} = R_DUP ;

$x=tie %hash, "DB_File",$filename,O_RDWR|O_CREAT, 0666, $DB_BTREE;
$hash{'john'}='11111';
$hash{'john'}='33333';
$hash{'john'}='44444';
$hash{'love'}='22222';

$key=$value=0;
print header,
      start_html('Setup');
print hr;
for($status=$x->seq($key,$value,RFIRST);0==$status;$status=$x->seq($key,$value,RNEXT)

{

   print "$key -> $value",p;

}


print end_html;

undef $x;
untie %hash;


红色的部分,如果不在CGI中使用是完全没问题的,这里却怎么也不出结果.
红色的直接换成下面的代码:
foreach (%hash)
{
   print "$_ -> $hash{$_}",p;
}
好了,又没问题了...
我的服务器是IIS6.0 + activeperl 5.87
这是IIS的问题还是perl的问题?

论坛徽章:
1
荣誉会员
日期:2011-11-23 16:44:17
2 [报告]
发表于 2006-03-27 15:33 |只看该作者
$x=tie %hash, "DB_File",$filename,O_RDWR|O_CREAT, 0666, $DB_BTREE;
这一行没有成功...
请检查$filename的路径...
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP