View Single Post
  #3  
Old 06-23-2004, 02:41 AM
Virus11
Discordant
 
Join Date: May 2004
Posts: 311
Default

Open command prompt and type:

Code:
cd\mysql\bin
mysql -u root mysql
use db;
grant all privileges on *.* to user@localhost identified by 'password' with grant option;
quit
exit
Replace db with your database name, replace user with your username, and replace password with your password. Now try and it should connect fine.
__________________

Reply With Quote