Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1563786
  • 博文数量: 289
  • 博客积分: 11086
  • 博客等级: 上将
  • 技术积分: 3291
  • 用 户 组: 普通用户
  • 注册时间: 2006-06-22 17:06
个人简介

徐小玉的博客。

文章分类

全部博文(289)

文章存档

2023年(6)

2022年(1)

2021年(2)

2020年(9)

2019年(9)

2018年(6)

2017年(10)

2016年(10)

2014年(3)

2013年(4)

2011年(12)

2010年(16)

2009年(14)

2008年(119)

2007年(48)

2006年(20)

我的朋友

分类:

2008-03-13 11:35:40

#!C:\Perl\bin\perl -w
 use DBI;
 
 
print "Hello \n";
 
# Open a connection
#  my $dbh = DBI->connect("dbi:DB2:sample", "DB2ADMIN", "db2admin", {RaiseError => 1});
# use VALUES to retrieve value from special register
 # my $stmt = "Values CURRENT DATE";
#  my $sth = $dbh->prepare($stmt);
#  $sth->execute();
# associate variables with output columns...
#  my $col1;
#  $sth->bind_col(1,\$col1);
#  while ($sth->fetch) { print "Today is: $col1\n"; }
#  $sth->finish();
#  $dbh->disconnect();
my $dbh=DBI->connect("dbi:DB2:Meiyl","wawe","ondemand");
my $stmt = "select * from swimpool";
my $sth = $dbh->prepare($stmt);
$sth->execute();
my $col1;
my $col2;
my $col3;
my $col4;
my $col5;
my $col6;
my $col7;
my $col8;
my $Volume;
  $sth->bind_columns(\$col1,\$col2,\$col3,\$col4,\$col5,\$col6,\$col7,\$col8);
   while ($sth->fetch) {
     chomp($col6);
    # print "$col1,$col2,$col3,$col4,$col5,$col6,$col7,$col8\n";
     if ($col6 =~ /o/)
     {
       # print "hahahah\n";
        $Volume=$col3*$col4*$col5*1000;
        print "$col2:\n   Volume of Water is :$Volume. \n";
      }
      else
      {
        $Volume=$col3*$col4*(($col7+$col8)/2)*1000;
        print "$col2:\n   Volume of Water is :$Volume. \n";
      }   
 } 
  $sth->finish();
  $dbh->disconnect();
阅读(1199) | 评论(0) | 转发(0) |
0

上一篇:today's quote

下一篇:DBI模块方法简介

给主人留下些什么吧!~~