Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^4: Closing Oracle cursors

by mickey (Acolyte)
on Apr 19, 2005 at 18:48 UTC ( [id://449390]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        PROCEDURE ref_cursor_close (curref IN cursor_ref)
        IS
        BEGIN
          close curref;
        END;
    
  2. or download this
    $sql = qq(
       BEGIN
    ...
    $sth = $dbh->prepare($sql);
    $sth->bind_param(":curref", $curref, {ora_type => ORA_RSET});
    $sth->execute;
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (8)
As of 2024-04-23 08:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found