开发者

Where can I check the SP I used in mysql

开发者 https://www.devze.com 2023-01-27 02:30 出处:网络
all Someone created xxx.mysql (SP) in mysql. However when I try to CALL it, the error message says, th开发者_开发知识库at SP does not exist. Can anyone tell me where I can check if this SP really does

all Someone created xxx.mysql (SP) in mysql. However when I try to CALL it, the error message says, th开发者_开发知识库at 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:

SELECT ROUTINE_TYPE, ROUTINE_NAME
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_SCHEMA='dbname';

(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

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号