In Oracle stored procedure we can use a user defined cursor type as parameter type, for example:
create or replace package ENTITYSP as
type ob_rec IS REF CURSOR;
PROCEDURE ENTITYSP(ob_output out ob_rec);
end ENTITYSP;
/
---------
Question:
Does DB2 stored procedure also support this kind of cursor type as parameter type?
Thanks alot for the help
Melvine