Recent content by Vox

  1. V

    Using function returning cursor

    Oh, thank you, it works! I just tried to use this SQL call ptest3 into :result it works with simple variables, but doesn't works with cursors.
  2. V

    Using function returning cursor

    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...
Back
Top