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, :p_cursor_2);
end;
Within the...