I am using PDO to access my database, and I have there two stored procedures. Right now, I execute to call to the procedures, which is working fine, something like this:
$q = $db->prepare("CALL sp1();");
$q->execute;
//parsing results here...
$q->closeCursor();
$q2 = $db->prepare("CALL sp2();");
$q2->execute;
///parsing results here...
I want to call both procedures in one prepare, so I tried something like -
$q = $db->prepare("CALL sp1(); CALL sp2()");
$q->execute;
But this is calling and executing only one stored procedure and not both. Is there a way to use and run at once multiple procedures?