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;