I'm calling an Oracle Stored procedure which takes an array as an input parameter. Owa.vc_arr(varchar2)
Ben php bir arama yapmak ve bir hata alıyorum. Herhangi bir yardım büyük mutluluk duyacağız. Ben kullanıyorum kod aşağıda verilmiştir.
function findSupplier($ptype) {
$proCall = 'BEGIN ICPISSAAPILIB.FIND_SUPPLIER(:P_PRODUCT_TY, :P_RESULTS); End;';
//Step 1: Prepare
$query = oci_parse($this->connect(), $proCall);
// Bind the input P_PRODUCT_TY argument to the $prodType PHP variable
$ptype = oci_new_collection($this->connect(),'vc_arr');
oci_bind_by_name($query,":P_PRODUCT_TY",$ptype,-1);
// Create a new cursor resource
$supplier_res = oci_new_cursor($this->connect());
// Bind the cursor resource to the Oracle argument
oci_bind_by_name($query,":P_RESULTS",$supplier_res,-1,OCI_B_CURSOR);
//Now Execute statement
oci_execute($query);
// cursor
oci_execute($supplier_res);
//Here boy, fetch
while ($items = oci_fetch_assoc($supplier_res)) {
$results[] = $items;
}
//returns multidimentional array containing cust_id, company_nm, street1,
// street2, street 3, p_origin_longitude, p_radius, p_name
return $results;
}