Hi,
Is there any way to use in TOracleDataset such a function:
FUNCTION PTEST3 return sys_refcursor
IS
res sys_refcursor;
begin
open res for select * from test1;
return res;
END;
I know, i can use an equivalent:
PROCEDURE PTEST4 (result in out sys_refcursor)
IS
res sys_refcursor...