MySQL Forums
Forum List  »  Stored Procedures

Re: listing store procedures
Posted by: Andrew Gilfrin
Date: February 01, 2006 04:47AM

There are 3 methods you can use to get procedure metadata, SHOW, the information schema or mysql.proc.

The easiest way is to use something like.

mysql> select routine_name from information_schema.routines;
+----------------+
| routine_name |
+----------------+
| helloworld |
+----------------+
1 row in set (0.24 sec)

You can check out the various methods in more detail in the MySQL documentation or for an overview here...

http://mysql.gilfster.com/page.php?parent_id=1.1&page_id=1.1.8

Andrew Gilfrin
------------------
http://gilfster.blogspot.com
My MySQL related Blog

http://www.mysqldevelopment.com
MySQL Stored Procedure,Trigger, View.... (Just about most things these days) Information

Options: ReplyQuote


Subject
Views
Written By
Posted
1981
February 01, 2006 03:51AM
Re: listing store procedures
1254
February 01, 2006 04:47AM
1289
February 01, 2006 05:57AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.