[Oracle/PHP]是否可以将数组传递给 PL/SQL 过程?
如果可能的话,参数在程序中需要是什么样子? 如何将数组传递给过程?
If it is possible, how does the parameter need to look like in the procedure?
And how do you pass an array to a procedure?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你可以。您需要使用 oci_bind_array_by_name。
此页面有一个很好的示例。
Yep, you can. You need to use oci_bind_array_by_name.
This page has a good example of it.
您还可以通过一次调用将多条记录从 .NET 传递到 Oracle。您将命令对象的 ArrayBindCount 设置为要传入的元素数量,并将参数的值设置为值数组而不是单个值。示例此处:
You can also pass multiple records from .NET into Oracle with just one call. You set the ArrayBindCount of the command object to the number of elements you want to pass in and the value of the parameter to the array of values rather than a single value. Sample here: