Calling a stored procedure in Perl : Perl « Procedure Function « MySQL Tutorial






$dbh = DBI->connect("DBI:mysql:$database:$host:$port","$user", "$password",{ PrintError => 0}) || die $DBI::errstr;
                  
if ($dbh->do("call error_test_proc(1)"))
{
    printf("Stored procedure execution succeeded\n");
}
else
{
    printf("Error executing stored procedure: MySQL error %d (SQLSTATE %s)\n %s\n",
             $dbh->err,$dbh->state,$dbh->errstr); 
}








11.50.Perl
11.50.1.Calling a stored procedure in Perl
11.50.2.Get returning value from a MySQL stored procedure in Perl