> I've a database in oracle, and I've created a stored procedure to do some
> INSERTION  transactions. How can I call that stored procedure in Perl so
> that it will execute the insertion. Can some one give me a example of
code?

        my $sth = $dbh->prepare("
BEGIN
        stored_proc(?);
END;
");
        $sth->execute($arg);


--Rich

Reply via email to