문제

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?

도움이 되었습니까?

해결책

Yep, you can. You need to use oci_bind_array_by_name.

This page has a good example of it.

다른 팁

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:

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top