| 
 Yah the readme needs to be updated, you cant create a database by right clicking anywhere.  There are 2 ways to create one that I know of, the method I used involved using sql commands and since im used to sql isnt a problem.  To add a db first run:C:\mysql\bin\mysql.exe
 you should get something similiar to:
 
 Welcome to the MySQL monitor.  Commands end with ; or \g.
 Your MySQL connection id is 138 to server version: 3.23.54-nt
 
 Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
 
 mysql>
 
 If you dont then check you installation.
 After you get the prompt type the following command exactly:
 
 create database eq;
 use eq
 source db.sql
 
 Thats it, if you have an broken database type:
 drop database eq;
 before the create database sql command.
 
 
 After that just run the addon db script patches.
 |