View Single Post
  #3  
Old 01-12-2007, 08:16 AM
John Adams
Demi-God
 
Join Date: Jul 2006
Posts: 1,552
Default

I am not so sure we should be posting short-hand in our Wiki guides, so maybe I'll change that later. The proper command is:

C:> mysql -u root -p
Password:

^ then enter your password at that prompt.

You should now be in a prompt like:

mysql>

At that prompt, you can do those commands \u peq

Or, go long hand, and enter:

Code:
mysql> create database peq;
mysql> use peq;
mysql> GRANT ALL PRIVILEGES ON peq.* TO eq@localhost IDENTIFIED BY 'eq' WITH GRANT OPTION;
mysql> flush privileges;
mysql> source load_empty_users.sql;
mysql> source load_system.sql;
You can also try other Wiki articles that are not specific to your SQL version, they sometimes offer missing bits or clarification of syntax.

http://www.eqemulator.net/wiki/wikka...indowsServer70
Reply With Quote