Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to create a procedure from PHP using PDO...I can execute the procedure with PDO, I can create the procedure with the console line or with phpmyadmin, but I'm not able to create this very same procedure from PDO...

I absolutely need to be able to create this procedure from my php code (it's a setup part of a bigger program, the first step checks if the procedure exists with "SHOW PROCEDURE STATUS LIKE 'name_of_procedure'", if the procedure doesn't exists, I try (but fail) to create it (with prepare/execute couple of methods).

Thanks for your help

share|improve this question
2  
Solved that....I had to remove the delimiters... – lapos34 Jun 27 '11 at 14:02
1  
You should actually answer your own question (instead of making a comment), then select your answer as the solution. – Jon L. Feb 8 at 18:05

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.