Pass array parameter from C# to Oracle for use in select where in statement -
try parse array parameter oracle use in select in statement:
c#:
string[] arr = new string { "aaa", "bbb" };
oracle:
type str_table table of varchar2(20); procedure sp_test ( p_arr in str_table ) begin select * table field in (select column_value table(p_arr)) end;
its not work. error cant access table not initialized...
Comments
Post a Comment