Operating the the standard phpMyAdmin interface gives no support for them other then the ability to create them through script.
The following bits of SQL are useful for viewing stored procedures and functions in a hosted database accessed through phpMyAdmin
SELECT ROUTINE_NAME
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_TYPE="FUNCTION"
AND ROUTINE_SCHEMA="database"
SELECT ROUTINE_NAME
FROM INFORMATION_SCHEMA.ROUTINES
WHERE ROUTINE_TYPE="PROCEDURE"
AND ROUTINE_SCHEMA="database"
No comments:
Post a Comment