Support - Knowledge base

Giving you the answers you need

Why not try our knowledge base for instant help and advice to enhance your online experience with Register365? From within the knowledge base you can browse our frequently asked questions and find the right answers to help solve your queries.

Home  >  Hosting  >  Windows Hosting  >  MySQL  >  View Article

ERROR [S1000] [MySQL][ODBC 3.51 Driver]User <USERNAME> already has more than 'max_user_connections' active connections.

3*3*3*3*3*

Article

If you encounter this error in your site, you may find that the last line of this code can help:

MySqlConnection myConnection = new MySqlConnection(sConnString);
     MySqlCommand myCommand = new MySqlCommand(sql.ToString(), myConnection);
     myConnection.Open();
     MySqlDataReader myReader = myCommand.ExecuteReader(CommandBehavior.CloseConnection);
     return myReader;

Rate This Article

How useful was this article?

Not useful A little useful Useful Very useful Everything I needed