in reply to Re^2: Getting error while invoking a SQL Procedure
in thread Getting error while invoking a SQL Procedure
If that comes back with an error from Oracle, maybe there's a problem with the stored procedure at the server side.my $sql = "CBT.SP_LOG_CONSOLE(?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"; my $sth = $dbh->prepare( $sql ); my @params = ...; # you need 10 values here $sth->execute( @params );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Getting error while invoking a SQL Procedure
by mje (Curate) on Sep 08, 2009 at 13:56 UTC |