DBD::Oracle supports it

if you mean this

$sth->bind_param_array(1,\...@in_values);
$sth->bind_param_inout_array(2,\...@out_values,0,{ora_type => ORA_VARCHAR2});
$sth->execute_array({ArrayTupleStatus=>\...@status});

in this case I am binding an array in and also binding an array on the way
out and I use the execute_array to do it.


No sure if DBD::Oracle will help much is it is useing OCI on the back end.

Cheers

> Current releases of DB2 support an array datatype, where a list of
> values is passed as a single parameter.  The current release of DBD::DB2
> does not support this.
>
> Does anyone know of DBD drivers for other databases that implement an
> array datatype and that I could use as an example?
>
> Cheers, Hildo
>


Reply via email to