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; > }); > $sth->bind_param_array(1,[EMAIL PROTECTED]); > $sth->bind_param_array(2,[EMAIL PROTECTED]); > $sth->bind_param_array(3,[EMAIL PROTECTED]); > $sth->bind_param_array(4,[EMAIL PROTECTED]); > > $sth->execute();
$sth->execute_array; Tim.