0

我正在使用 Perl 5,版本 14。 Win32::ODBC 是 VERSION = '0.034'; 和 Oracle 作为数据库。

我可以通过以下代码使用“emp_id,emp_name from emp”之类的查询从数据库中检索信息

use Win32::ODBC;

$db= new Win32::ODBC("DSN=datasourcename;UID=username;PWD=passwrd") 
        || die "Error: " . Win32::ODBC::Error();

$db->Sql("SELECT emp_Id, emp_name, salary FROM Sample.Emp");

while($db->FetchRow())
{
@values = $db->Data; 
print @values;
}
$db->Close();

我喜欢使用存储过程,而不是在 Perl 程序中使用查询。我创建了一个名为sp_rank.

PROCEDURE sp_rank(p_cursorVar out CursorType) 
is
begin 
    open  p_cursorVar for
    select emp_id, emp_name from emp;

End sp_rank;  

我想知道如何在 Perl 中使用存储过程并检索数据。

感谢您的时间和考虑。

4

2 回答 2

1

除了使用 Win32::ODBC,您还可以使用DBI模块。您还需要Oracle DB 接口

您的脚本可能如下所示:

#!/usr/bin/perl

use strict;
use warnings;
use DBI;

my $datasource = "datasourcename";
my $username = "foobar";
my $password = "secret";
# connect to your database with a database handle
my $dbh = DBI->connect("DBI:Oracle:$datasource",$username,$password) or die $DBI::errstr();
# create a statement handle for database interaction
my $sth = $dbh->prepare("SELECT emp_Id, emp_name, salary FROM Sample.Emp");
$sth->execute();
# fetch the rows and print them
while($sth->fetchrow_arrayref()){
    @values = @$_; 
    print @values;
}
# never forget to close your statement handle
$sth->finish();

# using your stored procedure
# overwrite your finished statement handle with a new one
$sth = $dbh->prepare("sp_rank()");
$sth->execute();
# fetch all your data into an array hashref structure. the column names in your DB are the keys in the hashref
my $data = $sth->fetchall_arrayref({});
$sth->finish();

$dbh->disconnect();
于 2013-01-20T17:08:34.213 回答
0

我的猜测是 WIN32::ODBC 不是最好的模块。我会看看 DBI 和 DBD::Oracle 模块。

查看DBD::Oracle 文档中的 DBD ::Oracle PL/SQL_Examples

于 2013-01-20T16:57:22.977 回答