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