- 论坛徽章:
- 0
|
win XP activeperl DBI ORACLE 10
脚本如下:
#!/usr/bin/perl
use DBI;
$dbname="cis210";
$user="sgpm";
$passwd="sgpm";
$dbh="";
$dbh = DBI->connect("dbi:Oracle dbname",$user,$passwd) or die "can't connect to
database ". DBI-errstr;
#连接数据库
$sth=$dbh->prepare("select * from dual" ;
$sth->execute;
#执行sql语句
while (@recs=$sth->fetchrow_array) {
print $recs[0].":".$recs[1].":".$recs[2]."\n";
#读取记录数据
}
$dbh->disconnect;
报错如下:
D:\perl>dbtest.pl
Use of :unique is deprecated at d:\oracle\product\10.2.0\db_1\perl\5.8.3\lib/MSW
in32-x86-multi-thread/Config.pm line 39.
Use of :unique is deprecated at d:\oracle\product\10.2.0\db_1\perl\5.8.3\lib/MSW
in32-x86-multi-thread/Config.pm line 80.
Perl lib version (v5.8.3) doesn't match executable version (v5.12.3) at d:\oracl
e\product\10.2.0\db_1\perl\5.8.3\lib/MSWin32-x86-multi-thread/Config.pm line 32.
Compilation failed in require at d:\oracle\product\10.2.0\db_1\perl\5.8.3\lib/MS
Win32-x86-multi-thread/DynaLoader.pm line 25.
BEGIN failed--compilation aborted at d:\oracle\product\10.2.0\db_1\perl\5.8.3\li
b/MSWin32-x86-multi-thread/DynaLoader.pm line 25.
Compilation failed in require at d:\oracle\product\10.2.0\db_1\perl\site\5.8.3\l
ib/MSWin32-x86-multi-thread/DBI.pm line 156.
BEGIN failed--compilation aborted at d:\oracle\product\10.2.0\db_1\perl\site\5.8
.3\lib/MSWin32-x86-multi-thread/DBI.pm line 156.
Compilation failed in require at D:\perl\dbtest.pl line 2.
BEGIN failed--compilation aborted at D:\perl\dbtest.pl line 2.
求解。 |
|