[Oracle/PHP]是否可以将数组传递给 PL/SQL 过程?

发布于 2024-08-27 18:08:56 字数 40 浏览 5 评论 0原文

如果可能的话,参数在程序中需要是什么样子? 如何将数组传递给过程?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月无声 2024-09-03 18:08:56

是的,你可以。您需要使用 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.

山有枢 2024-09-03 18:08:56

您还可以通过一次调用将多条记录从 .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:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文