如何将Oracle数组参数从ado.net c#传递到oracle数据库
在我的项目中使用oracle 11g和.net 2010。DAL是调用oracle db的Web服务。 一个sp有数组(oracle数组)参数来插入多个值。 我在 DAL 中有字符串可观察集合。 如何将可观察集合值传递给oracle sp.
请帮助我。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是假设使用 Oracle ODP.NET 并且您已经建立了连接。还假设被调用的包/过程具有一个或多个表类型的输入参数(Oracle 的数组实现)。
您可以使用Oracle参数类来完成,并将参数的集合类型设置为数组。
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.