Re: Stored Procedure & Array

2001-11-12 Thread Dean Arnold
> On Mon, Nov 12, 2001 at 06:50:14PM +0100, Benoit Rey wrote: > > I have a stored procedure wich has an array of values as entry parameter. > > > > Is it possible with DBI to bind an array "@tab" ? > > > > > > For example : > > > > $sti=$dbi->prepare("BEGIN ".$PackageNameOracle.".myProcedure

Re: Stored Procedure & Array

2001-11-12 Thread Ronald J Kimball
On Mon, Nov 12, 2001 at 06:50:14PM +0100, Benoit Rey wrote: > I have a stored procedure wich has an array of values as entry parameter. > > Is it possible with DBI to bind an array "@tab" ? > > > For example : > > $sti=$dbi->prepare("BEGIN ".$PackageNameOracle.".myProcedure (:1,:2,:3); > END;

Stored Procedure & Array

2001-11-12 Thread Benoit Rey
Hello, I have a stored procedure wich has an array of values as entry parameter. Is it possible with DBI to bind an array "@tab" ? For example : $sti=$dbi->prepare("BEGIN ".$PackageNameOracle.".myProcedure (:1,:2,:3); END;"); $sti->bind_param(1, $var1); $sti->bind_param(2, @tab); ??? $