Hi,
Then I made another here
Select all
select text
from all_source
where name = 'OTN_REF_CURSOR';
He returns:
Select all
"package otn_ref_cursor as
"
" -- used to illustrate passing a ref cursor
"
" -- as a return value from a function
"
" -- or as an output parameter from a procedure
"
"
"
" function get_emp_info return sys_refcursor;
"
" procedure get_emp_info(p_rc out sys_refcursor);
"
"
"
" procedure get_multiple_cursors(p_rc1 out sys_refcursor, p_rc2 out sys_refcursor, p_rc3 out sys_refcursor);
"
end;
realize that it does not show the contents of the procedure get_multiple_cursors, which is the one that has the code that makes the select at the base, I know why I saw the structure I'm using it as an example for this post,
How do I show the tb content of this Package within this package?
Thanks