I need to pass an array from C#.net application to oracle stored procedure. Can anyone please let me know how to go about it? Also, which OracleType type do I use in C# when pas
You should use DB-defined nested table types to pass an array to PL/SQL. Take a look at this nice tutorial, it might help you.