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

Popular posts from this blog

How to start daemon on android by adb -

testing - Detect whether test has failed within fixture -

Angularjs unit testing - ng-disabled not working when adding text to textarea -