develop:perl:oracle
문서의 이전 판입니다!
Perl + Oracle 연동
#!/usr/bin/perl # use strict; use DBI; #There are many other security measures # - Also, don't forget to use a 'username' and 'password' for the DB # - Do Not use 'sa' and ''. ##################### DBI configuration ######################## my $hostip = "192.168.200.221"; my $username = "beflydba"; my $password = "ahdEkd"; my $sid = "SOAF1"; my $dsn = "DBI:Oracle:host=$hostip;sid=$sid"; my %attr = ( RaiseError => 1, AutoCommit => 0 ); # howto 1 my $dbh = DBI->connect ($dsn, $username, $password, \%attr) || die "Database connection not mode : $DBI::errstr"; # howto 2 #my $dbh = DBI->connect ("DBI:Oracle:host=$hostip;sid=$sid", $username, $password, \%attr); my $que = "select itemcode from tb_item where rownum < 5"; my $itemcode; # my $sth = $dbh->prepare($que); $sth->execute() || die $sth->errstr; while( ($itemcode) = $sth->fetchrow() ) { print "select * from tb_studyunit where itemcode=$itemcode ;\n"; } $sth->finish(); $dbh->disconnect;
develop/perl/oracle.1187436476.txt.gz · 마지막으로 수정됨: 저자 59.9.215.67
