Chinaunix首页 | 论坛 | 博客
  • 博客访问: 226450
  • 博文数量: 50
  • 博客积分: 1415
  • 博客等级: 上尉
  • 技术积分: 541
  • 用 户 组: 普通用户
  • 注册时间: 2009-12-03 11:48
文章分类

全部博文(50)

文章存档

2010年(38)

2009年(12)

我的朋友

分类:

2010-04-25 02:45:29

#!/usr/bin/perl


use DBI;
use DBI qw(:sql_types);

#&connectOra;


sub connectOra
{
        my ($strHost,$strUser,$strPasswd) = @_;
        DBI->trace(0);
        my $dbhOra = DBI->connect("dbi:Oracle:${strHost}", ${strUser}, ${strPasswd},
                               { AutoCommit => 1, PrintError => 0, RaiseError => 0 } ) ;
                                                            
        unless (defined($dbhOra) ) { return undef; }

        return $dbhOra;
}








$dbh = DBI->connect("dbi:Oracle:","scott","tiger") or die("DB connect error! \n");

$sql = "select * from emp";
$sth = $dbh->prepare($sql);
$sth->execute() or die("error!");

while(@rows = $sth->fetchrow_array)
{
foreach(@rows)
{
print "$_\t";
}
print "\n";
}

$sth->finish;
$dbh->disconnect();
exit 0;


阅读(810) | 评论(0) | 转发(0) |
0

上一篇:perl and LWP 文档

下一篇:PERL文本对比想法

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