in reply to Passing Arrays from Perl to Stored Procedures
Calling stored procedures is currently not defined by the DBI. Some drivers, such as DBD::Oracle, support it in non-portable ways. See driver documentation for more details.)Sometimes you can call your procedure as a function in a select statement: select StoredFunc(?) from dual. And bind the parameter as usual.
I don't know all the libraries but I believe in most there is no method to pass an generic array as a parameter. Of course - if you are using PostreSQL stored procedures in perl than you can pass parameters as usuall.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Passing Arrays from Perl to Stored Procedures
by TheYoungMonk (Sexton) on Mar 07, 2003 at 09:46 UTC | |
by iguanodon (Priest) on Mar 07, 2003 at 10:58 UTC | |
by zby (Vicar) on Mar 07, 2003 at 10:12 UTC |