Thank you for the prompt reply.
Regarding my second question:
When a Ref Cursor type is "opened" and "filled" with values/rows can the values of those rows be seen in the debugger?
i.e OPEN AllRecs FOR Select Owner, Empno FROM EMP WHERE EmpNo = 15;
This SQL should "get" Owner and Empno "into"...
Hello Everyone
I was wondering if there is a way to view the values of a Long Variable or any variable defied as VARCHAR2(1000) or greater during debugging.
Also is there a way to view the value(s) of a REF CURSOR type.
i.e. OPEN AllRecs FOR select * from dual;
Can we view the contents of...