in reply to Re: Passing Arrays from Perl to Stored Procedures
in thread Passing Arrays from Perl to Stored Procedures
poj# @parameter is the array with 3 parameters $csr = $db->prepare(q{ BEGIN SQL_PROC_NAME(:1,:2,:3); END; }); $csr->bind_param(":1", $parameter[0] ); $csr->bind_param(":2", $parameter[1] ); $csr->bind_param(":3", $parameter[2] ); eval { $csr->execute; };
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Passing Arrays from Perl to Stored Procedures
by TheYoungMonk (Sexton) on Mar 07, 2003 at 12:46 UTC | |
by dragonchild (Archbishop) on Mar 07, 2003 at 15:51 UTC | |
by Anonymous Monk on Mar 07, 2003 at 21:44 UTC |