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