In my project using oracle 11g and .net 2010. DAL is web service to call oracle db.
A sp have array (oracle array) parameter to insert multiple value.
I have string observable collection in DAL.
How to pass observable collection value to oracle sp.
Kindly help to me.
In my project using oracle 11g and .net 2010. DAL is web service to
Share
This is assuming use of Oracle ODP.NET and you’ve already got a connection. Also assumes the called package/procedure having one or more input parameters of type table (Oracle’s implementation of array).
You can accomplish using Oracle parameter class, and setting the collection type of the parameter to array.