Help for this page

Select Code to Download


  1. or download this
    CREATE OR REPLACE PACKAGE table_ids AS
       TYPE return_cursor IS REF CURSOR;
       PROCEDURE get_next_session_id(session_cursor OUT return_cursor); 
    ...
             WHEN OTHERS
                  THEN raise_application_error(-20001, 'There was an undet
    +erminable error.');
    END get_next_session_id;
    
  2. or download this
    sub executeStoredProcTestInfo
    {
    ...
       
       return $table;
    }
    
  3. or download this
    CREATE OR REPLACE PROCEDURE     get_next_session_id
    (v_session_id OUT VARCHAR2)
    ...
         WHEN OTHERS
              THEN raise_application_error(-20001, 'There was an undetermi
    +nable error.');
    END get_next_session_id;
    
  4. or download this
    my $rv;
    my $func = $dbh->prepare(q{
    ...
    
        $func->bind_param_inout(":rv", \$rv, 6);
        $func->execute;