Home >>Invoke stored procedures with DBIThere is currently no standard way to call stored procedures with DBI. However, if you have created a stored procedure within an Oracle database, you can use $dbh->do() to immediately execute the procedure:
$dbh->do("BEGIN myPackage.myProcedure; END;");
in mysql you can use CALL
$dbh->do("CALL Stored_procedure");
Perl functions
|
Home perl hello world! Perl Typeglob
|