I am trying to figure out the best way to determine if a mysql database uses stored procs or not. It's not a home grown database... open source stuff. I found another post here: Find all MySQL Stored Procedure calls?
Based on that post, I've tried the following:
mysql> SELECT * FROM information_schema.ROUTINES
-> ; Empty set (0.00 sec)
mysql>
Can I safely assume then that this database has no stored procs? Thanks!