perl資料庫添加、刪除、更新、查詢操作例子_perl

來源:互聯網
上載者:User

注意:串連時候使用SID指定的database,所以沒有在串連中指定database.

#!/usr/bin/perluse 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;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.