ref_cursor not getting proper output
hi,
can you please help me to fix the problem in the above code
create or replace function funone( a in varchar2) return sys_refcursor is
v_t sys_refcursor;
begin
open v_t for a;
return v_t;
end;
select funone('select * from emp') from dual;
Regards
------------
Ripendra
can you please help me to fix the problem in the above code
create or replace function funone( a in varchar2) return sys_refcursor is
v_t sys_refcursor;
begin
open v_t for a;
return v_t;
end;
select funone('select * from emp') from dual;
Regards
------------
Ripendra
0