Re: bind param array

2003-03-11 Thread Tim Bunce
s not supported in 5.6 version?. Also I can't shift my > > perl version to 5.8 or later because It involves lot of work. Is there any other > > way in 5.6 where I can call a stored procedure passing arrays as the arguments. > > > > Regards > > Murugan >

Re: bind param array

2003-03-11 Thread murugan mohan
QL/PL. Please let me know. Regards Murugan - Original Message - From: Tim Bunce Sent: Tuesday, March 11, 2003 3:08 PM To: murugan mohan Cc: Tim Bunce Subject: Re: bind param array Maybe your DBI version is too old. Tim. p.s. Please send all email to [EMAIL PROTECTED], not to me. T

Re: bind param array

2003-03-10 Thread Tim Bunce
On Mon, Mar 10, 2003 at 03:17:46PM +0530, murugan mohan wrote: > Hi all, >I am trying to know how I can use bind array. I am having Perl version 5.6 and i > am working in windows 2k. > what I tried is as follows. > > $sth = $g_dbh->prepare(q{ > BEGIN > test_1.P1( > ?, > ?, > ?, > ?); > END;

bind param array

2003-03-10 Thread murugan mohan
Hi all, I am trying to know how I can use bind array. I am having Perl version 5.6 and i am working in windows 2k. what I tried is as follows. $sth = $g_dbh->prepare(q{ BEGIN test_1.P1( ?, ?, ?, ?); END; }); $sth->bind_param_array(1,[EMAIL PROTECTED]); $sth->bind_param_array(2,[EMAIL PROTECT