Recent content by sparinfo

  1. S

    Oracle 12c DBMS_SQL.RETURN_RESULT with pl/sql dev 11

    With pl/sql dev 11, I execute the Oracle 12c new feature DBMS_SQL.RETURN_RESULT. Exemple : declare l_cur sys_refcursor; begin open l_cur for select * from dual; dbms_sql.return_result(l_cur); end; It works without error, but I don't see the results. Where I can see the results in...
Back
Top