I seem to be getting an error whenever I try to run a package stored procedure that returns a REF CURSOR.
For example:
I then try to call it in SQL PLUS as
PLS-00306: wrong number or types of arguments in call to proc_sel_URLLINK
There is probably something I am forgetting here.
For example:
Code:
TYPE T_CURSOR IS REF CURSOR;
PROCEDURE proc_sel_URLLINK(LINKCURSOR OUT NOCOPY T_CURSOR);
I then try to call it in SQL PLUS as
Code:
SQL> BEGIN
2 PKG_URLLINKS.proc_sel_URLLINK;
3 END;
4 /
PKG_URLLINKS.proc_sel_URLLINK;
PLS-00306: wrong number or types of arguments in call to proc_sel_URLLINK
There is probably something I am forgetting here.