Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

[Oracle/PHP]Is it possible to pass an array to a PL/SQL procedure?

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?

like image 840
Kel Avatar asked Apr 05 '10 20:04

Kel


1 Answers

Yep, you can. You need to use oci_bind_array_by_name.

This page has a good example of it.

like image 181
Matthew Watson Avatar answered Sep 22 '22 02:09

Matthew Watson