|
SQLGate is a developer-centered program with easy-to-use graphical interface. I'm so glad to have SQLGate that made my work much easier. |
Park, Jong-Joo IBKTech Inc. |
|
||||||||||||||||
|
|
The error is generated when connecting to MySQL Server, which is remote. When MySQL is installed on Window, the command prompt is opened by selecting
Start>Programs>Command Prompt. Windows Command : Start > Programs > Command Prompt During the MySQL installation, MySQL creates an account called root with no password, which can be used to log into the database. It is highly recommended that a password is assigned to this account since root has full control over the MySQL databases. To create a separate user account for your web application, connect to
MySQL and log in with the superuser account using one of the following
methods. In the example below, the account with superuser privileges is
the root account. MySQL should prompt you to enter a password when you
press the Enter key: > mysql -u root -p password The message below will pop up if connected. mysql>Use mysql
mysql> GRANT ALL PRIVILEGES ON *.* to test@"%" IDENTIFIED
BY 'test'
If the command above is worked properly, please try the command below. Check out User table. the user account called 'test' enables remote connect Here is how to have test account connect only to emp Database
|
|||||||||||||||
|
||||||||||||||||