免费注册 查看新帖 |

Chinaunix

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

关于perl 一个赋值问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-03-21 21:51 |只看该作者 |倒序浏览
本帖最后由 maodou888 于 2010-03-21 22:01 编辑

Use of uninitialized value in concatenation (.) or string at cook_name.pl line 39.
<TD></td>
</tr>
<TR>
Use of uninitialized value in concatenation (.) or string at cook_name.pl line 39.  
Use of uninitialized value in concatenation (.) or string at cook_name.pl line 46.
<TD></td>
</tr>
<TR>
Use of uninitialized value in concatenation (.) or string at cook_name.pl line 46.
<TD></td>
</tr>
<TR>
Use of uninitialized value in concatenation (.) or string at cook_name.pl line 46.
<TD></td>

代码如下:
#!/usr/bin/perl -w
use strict;
use DBI;
use CGI qw(:standard);
my $data;       
my $dbh=DBI->connect("DBI:mysql:configServer","root","123456" or die "ErrorDBI::errstr\n";
        $dbh->do("SET character_set_client = 'gb2312'";
        $dbh->do("SET character_set_connection = 'gb2312'";
        $dbh->do("SET character_set_results= 'gb2312'";  
                my $sql="select a.name from name  a  inner join cook_name b on a.n_id=b.n_id;";
                my $sql1="select a.name from cook  a  inner join cook_name b on a.n_id=b.n_id;";


                my $sth=$dbh->prepare($sql);
                my $sth1=$dbh->prepare($sql1);
        $sth->execute;
        $sth1->execute;


while($data=$sth->fetchrow_hashref){
        print qq(<TR>\n);
       
        print qq(<TD>$data->{a.name}</td>\n);
print qq(</tr>\n);
}

while(my ($a.name)=$sth1->fetchrow_hashref){
        print qq(<TR>\n);
       
        print qq($a.neme<BR>;
print qq(</tr>\n);



}

这样赋值是不是有问题,直接查询语句写成select name from cook 这样在下边 $data 赋值就没 问题。

下边我也试着写成 print qq($'a.neme'<BR>; 这样也不出
不知道 perl 是不是对 “.”有特殊的用法

论坛徽章:
0
2 [报告]
发表于 2010-03-21 22:20 |只看该作者
不可以这样搞吧

$data->{a.name}  
改成
$data->{name}

论坛徽章:
0
3 [报告]
发表于 2010-03-21 22:22 |只看该作者
. is an operator

论坛徽章:
0
4 [报告]
发表于 2010-03-22 17:24 |只看该作者
搞定 谢谢
guap514
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP