The cause is a bug in the MySQL driver. Documented here:
http://bugs.mysql.com/bug.php?id=10640
http://bugs.mysql.com/bug.php?id=16703
http://bugs.mysql.com/bug.php?id=14836
A process is attempting to execute a SELECT statement on the proc table. This ‘proc’ table is a system table that stores procedures for all users on the MySQL server. On shared hosting, access to this table is a problem, as it would allow customers to view each other’s procedures.
A possible solution to the problem is to change your connection string so that it includes “Use Procedure Bodies=false”.
Example:
“server=localhost; user id=dbuser; password=password; database=dbname; Use Procedure Bodies=false;”
Article from the support category: ASP & ASP.NET