all
Someone created xxx.mysql (SP) in mysql. However when I try to CALL it, the error message says, that SP does not exist. Can anyone tell me where I can check if this SP really does not exist in the database? Can I use phpmyadmin to check it?
Many thanks in advand
You can list all the stored procedures in a MySQL database using this SQL:
(replace dbname with the name of your database)
You can find more information and tips on stored procedures here:
http://dev.mysql.com/doc/refman/5.0/en/faqs-stored-procs.html
http://dev.mysql.com/doc/refman/5.0/en/stored-routines.html