in reply to Calling MySQL Stored Procedures using DBI and DBD::mysql

Try
my $sql = "call PROC()" ; $sth = $dbh->prepare($sql); $sth->execute(); # PROC is the name of the procedure.
Could not test this code since I don't have access to MySQL at my workplace.

Thanks..