I have this store procedure it’s have 2 parameter out: rs (NVARCHAR2) and cursor(SYS_REFCURSOR).
this my procedure:
CREATE OR REPLACE NONEDITIONABLE PROCEDURE PR_TABLE1(
RS OUT NVARCHAR2,
CURSOR OUT SYS_REFCURSOR
)
AS
BEGIN
OPEN CURSOR FOR
SELECT * FROM EXAM;
RS:='SUCCESS!';
COMMIT;
END PR_TABLE1;
when I test on pl/sql is ok.But It’s error on UiPath like this.
Run query-Withtext: ORA-06550: line 1, column 7:
PLS-00306: wrong number or types of arguments in call to ‘PR_TABLE1’
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
And this’s my configExcecuteQuery in UiPath
Can any one help me please.
Thank you.