Log in

View Full Version : Making new DB in MySql


ManJones
12-18-2002, 01:58 AM
When folling the walk through it says to go to database tab in MySql , right click on name and select create database. But I don not get that menu, when I right click on hostname I only get the flush menus. I searched for answers but could not find any. Thanks in advance...

Markland
12-18-2002, 11:03 PM
Attention: All commands are given inside quotes, you need to remove the quotes before hitting enter. "command flags" would be typed as command flags.

1. Install MYSQL.
This walkthrough will assume that you have installed this in C:\mysql

2. Startup mysqladmin.exe in C:\mysql\bin
Minimize or hide it.

3. Copy the db.sql file to the C:\mysql\bin directory
You get the file db.sql from the eqemu zip file

4. Start up a command prompt
Start -> Run
Type in "command" and click run

5. Change Directory to C:\mysql\bin
Type in "CD C:\mysql\bin" and hit enter

6. Start up mysql
Type in "mysql" and hit enter

7. Create the database eq
Type in "create database eq;" and hit enter

8. Tell mysql to use the eq database
Type in "use eq;" and hit enter

9. Source in db.sql
Type in "source db.sql;" and hit enter

10. You may now start to use the database with EQemu.

Good luck

pbradish
12-18-2002, 11:06 PM
:)