I am calling a oracle package function from c#.net but facing below issue
Error : ORA-06550: line 1, column 15:
PLS-00306: wrong number or types of arguments in call to 'MYFUNCTION'
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
My function is :
function Myfunction(lines in t_line, brokerSeq in number,
broker_code_in_file in varchar2,
pb_pv_ind in varchar2)
First parameter is declared in same package like
type t_line is table of varchar2(100) index by binary_integer;
Please assist.
I have an example, which is in VB.NET, but I guess you can translate it to C#: