in reply to How to get results back from SQL Stored Procedure using Perl
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.Which means that 1) prepare, execute, fetch is unlikely to work, 2) without knowing which driver you're using, any answer is going to be guesswork, and 3) be prepared that you may have to result to using a more specific interface to your database client libraries instead of the DBI, which implements the lowest common denominator, and hardly anything else.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to get results back from SQL Stored Procedure using Perl
by Anonymous Monk on Apr 03, 2012 at 21:27 UTC | |
by roboticus (Chancellor) on Apr 03, 2012 at 23:30 UTC |