My name is Karina Nagahama,
I'm working on Windows NT and I'm using Apache, Perl , mod_perl and Dbi
modules.
I downloaded them from
ftp://theoryx5.uwinnipeg.ca/pub/other/perl-win32-bin-0.7.exe
In order to find some data in the database I wrote the following code.
my $dbhandler = DBI->connect(oradb_service(), oradb_user(), oradb_pass());
my $state = $dbhandler->prepare($SQL_STR);
$state->execute();
Then I use while to see the data, as follow.
while (my $RsTsuwaMeisai = $state->fetchrow_hashref){
print "<BR>(".$RsTsuwaMeisai->{BUSYO_NAME_1}.")";
}
Now I want to know,
how to execute an stored procedure and send some parameters to it.
How can I do that?.
Sorry for trouble you.
[EMAIL PROTECTED]