Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: Invoke and bind parameters to a PL/SQL Procedure

by olus (Curate)
on Sep 02, 2009 at 12:08 UTC ( [id://792890]=note: print w/replies, xml ) Need Help??


in reply to Invoke and bind parameters to a PL/SQL Procedure

With DBI I used bind_param. Something like:

my $csr = $dbh->prepare(q{ BEGIN schema.package.stored_procedure(:param1, :param2); END; }); $csr->bind_param(':param1', $param1); $csr->bind_param(':param2', $param2); ...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://792890]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (5)
As of 2024-04-19 13:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found