Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
2  
The underlying mysql drivers do not allow multiple queries to be issued in a single query call. It's a safety measure to prevent some forms of SQL injection. This still applies even though you're using PDO. – Marc B Feb 16 '12 at 14:07
3  
Really, the best course of action if they must be run together, is to create another procedure which calls both of them inside a transaction itself. – Michael Berkowski Feb 16 '12 at 14:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.