FAQ relating MySQL
How can I import my existing MySQL file into my new database?
Using a command line MySQL program, you can do a simple insert command:
mysql -h mysql.yourdomainname -u username -p password < databasefile.sql
You will be able to use a Insert Option with any MySQL graphical interface software that you can connect to our servers with.
How many simultaneous connections to the database can I have?
20 simultaneous script connections are permitted. Please be aware that due to this, your scripts must close all open connections once the data you require has been retrieved.
I am getting an error Warning: mysql_connect(): User myuser1234 has already more than 'max_user_connections' active connections in /clientdata/www/com/d/domain.com/include.php on line 123
This means that you are not closing your database connections after openning them to retrieve data. Simply add a close connection command to the end of your scripts and the issue will resolved.
|