I have a PL/SQL procedure that takes as input parameter a TABLE OF TYPE NUMBER(10).
I'am trying to call it from php right now. The binding doesn't rise any error, everything is fine. But the content of my binding is not the one I expected!
For example I bind an array: array(19465,19467) On the pl/sql side I get this kind of values: -2.50000000000000000000000000000000E+107
It appears that something wrong happen in the precision/length/type? of my binding, but I am lost.
Here is my binding: oci_bind_array_by_name($stmt, ':name', $array, -1, SQLT_NUM);