I accidentally removed the C# line that used to perform the “close” method with the opened connection. Now MySQL tells me that “too many connections” has been opened. I CAN’T ACCESS IT
What should I do!?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Here’s some useful information if you can get a manual connection to the server, to manage things like this in the future:
SHOW PROCESSLIST will tell you what connections are still open: http://dev.mysql.com/doc/refman/5.1/en/show-processlist.html
KILL will allow you to destroy said connections: http://dev.mysql.com/doc/refman/5.1/en/kill.html