【发布时间】:2014-02-13 19:34:11
【问题描述】:
我正在从 c#.net 调用 oracle 包函数,但遇到以下问题
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
我的功能是:
function Myfunction(lines in t_line, brokerSeq in number,
broker_code_in_file in varchar2,
pb_pv_ind in varchar2)
第一个参数在同一个包中声明,如
type t_line is table of varchar2(100) index by binary_integer;
请帮忙。
【问题讨论】:
-
你的 C# 调用是什么样子的?