You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I'm still experiencing the same issue described here #188
using Oracle 12.
I have this stored Procedure, which returns a sys_refcursor :
create or replace PROCEDURE PROCSELECTDIPCURSOR2
(
outcur OUT SYS_REFCURSOR
) AS
BEGIN
OPEN outcur FOR SELECT PERSON_ID, FIRST_NAME,LAST_NAME from DIPENDENTI where LAST_NAME LIKE 'T%';
END PROCSELECTDIPCURSOR2;
and the GO code calling the stored procedure is this :
I've tried using interface, sql.Rows and driver.Rows as return variable for the sys_refcursor, but no luck , it keeps saying
PLS-00306: wrong number or types of arguments in call to 'PROCSELECTDIPCURSOR2' .
The code above works ok if I call a stored procedure returning base types (a number, for example).
Is the sql.Out support still missing something about cursors, or it's my fault?
Thanks
The text was updated successfully, but these errors were encountered:
Hello,
I'm still experiencing the same issue described here
#188
using Oracle 12.
I have this stored Procedure, which returns a sys_refcursor :
and the GO code calling the stored procedure is this :
I've tried using interface, sql.Rows and driver.Rows as return variable for the sys_refcursor, but no luck , it keeps saying
PLS-00306: wrong number or types of arguments in call to 'PROCSELECTDIPCURSOR2' .
The code above works ok if I call a stored procedure returning base types (a number, for example).
Is the sql.Out support still missing something about cursors, or it's my fault?
Thanks
The text was updated successfully, but these errors were encountered: