Calling a stored procedure in Perl : Perl « Procedure Function « SQL / MySQL






Calling a stored procedure in Perl

 
        
$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); 
}

        








Related examples in the same category

1.Get returning value from a MySQL stored procedure in Perl