I am attempting to call a stored procedure that returns two SYS_REFCURSORS but I always get the error Cursor variable cannot be nil.
I can call the procedure via my SQL editor and verify that both cursors have results.
begin
my_package.my_procedure
p_cursor_1,
_cursor_2);
end;
Within the OracleDataSet, I have both of the variables defined as type Cursor. Procedure calls that return a single SYS_REFCURSOR work fine. Do I need to be doing something different when returning two SYS_REFCURSOR's?
I can call the procedure via my SQL editor and verify that both cursors have results.
begin
my_package.my_procedure


end;
Within the OracleDataSet, I have both of the variables defined as type Cursor. Procedure calls that return a single SYS_REFCURSOR work fine. Do I need to be doing something different when returning two SYS_REFCURSOR's?