passing PHP array to Oracle Stored Proc (PLS-00306: wrong number or types of arguments)
问题 Using PHP 5.3.2 and Oracle 11G, I'm trying to pass an array from PHP into an oracle stored proc. Here is my PL/SQL: create or replace type NUM_ARRAY as table of number; create or replace package txa as procedure upsert_txa_compliance_slct( v_compl_id_array in num_array); end txa; create or replace package body txa as procedure upsert_txa_compliance_slct(v_compl_id_array in num_array) is begin . . -- sql code removed for brevity. package and body compile no errors . end upsert_txa_compliance