当前位置: 代码网 > it编程>网页制作>Perl > perl数据库添加、删除、更新、查询操作例子

perl数据库添加、删除、更新、查询操作例子

2024年05月18日 Perl 我要评论
注意:连接时候使用sid指定的database,所以没有在连接中指定database.#!/usr/bin/perluse strict;use warnings;use dbi;my $db_nam

注意:连接时候使用sid指定的database,所以没有在连接中指定database.

#!/usr/bin/perl
use strict;
use warnings;
use dbi;
my $db_name="geneva_admin";
my $db_passwd="geneva_admin";

my $dbh=dbi->connect("dbi:oracle:","$db_name","$db_passwd")
 or die "can't connect to oracle database:$dbi::errstr\n";
 
my $sth=$dbh->prepare("select a,b
   from a_tmp
   where a=2")
 or die "can't prepare sql prepare:$dbi::errstr\n";
$sth->execute or die "can't execute:$dbi::errstr\n";
while (my @row = $sth->fetchrow_array()){
 my ($a,$b) = @row;
 print "1..\$a=$a,\$b=$b\n";
}
$sth->finish();
my $row=3;
my $sql="select a,b
 from a_tmp
 where a = ?";
$sth=$dbh->prepare($sql) or die "can't prepare sql prepare:$dbi::errstr\n";
$sth->execute($row) or die "can't execute:$dbi::errstr\n";
while (my @row = $sth->fetchrow_array()){
 my ($a,$b) = @row;
 print "2..\$a=$a,\$b=$b\n";
}
$sth->finish();
my $row_a=3;
my $row_c=0;
$sql="select a,b
 from a_tmp
 where a = ?
 and  c = ?";
$sth=$dbh->prepare($sql) or die "can't prepare sql prepare:$dbi::errstr\n";
$sth->execute($row_a,$row_c) or die "can't execute:$dbi::errstr\n";
while (my @row = $sth->fetchrow_array()){
 my ($a,$b) = @row;
 print "3..\$a=$a,\$b=$b\n";
}
$sth->finish();
for $row(1,2,3){
$sql="select a,b
 from a_tmp
 where a = ?";
$sth=$dbh->prepare($sql) or die "can't prepare sql prepare:$dbi::errstr\n";
$sth->execute($row) or die "can't execute:$dbi::errstr\n";
while (my @row = $sth->fetchrow_array()){
 my ($a,$b) = @row;
 print "4..\$a=$a,\$b=$b\n";
}
}
$sth->finish();
#for $row(1,2,3){
#$sql="insert into a_tmp
#   values (?,?,?)";
#$sth=$dbh->prepare($sql) or die "can't prepare sql prepare:$dbi::errstr\n";
#$sth->execute($row,$row+1,$row+2) or die "can't execute:$dbi::errstr\n";
#}
##$dbh->commit;
#$sth->finish();

#$sql="insert into a_tmp
#   values (100,30,2)";
#$sth=$dbh->prepare($sql) or die "can't prepare sql prepare:$dbi::errstr\n";
#$sth->execute or die "can't execute:$dbi::errstr\n";
##$dbh->commit;
#$sth->finish();
for $row(1,2,3){
$sql="update a_tmp 
   set b = ?
    , c = ?
   where a = ?";
$sth=$dbh->prepare($sql) or die "can't prepare sql prepare:$dbi::errstr\n";
$sth->execute($row+100,$row+50,$row) or die "can't execute:$dbi::errstr\n";
}
#$dbh->commit;
$sth->finish();

for $row(1,2,3){
$sql="delete from a_tmp
   where c=2";
$sth=$dbh->prepare($sql) or die "can't prepare sql prepare:$dbi::errstr\n";
$sth->execute or die "can't execute:$dbi::errstr\n";
}
#$dbh->commit;
$sth->finish();

$dbh->do("insert into a_tmp values (1,1,1)") or die "$dbi::errstr\n";
$dbh->do("delete from a_tmp where c=51")   or die "$dbi::errstr\n";
#$dbh->commit;
$sth->finish();
$dbh->disconnect;

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2025  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com