Here is what you need to do (kinda' backtracking to make sure you have it all taken care of)....
First whatever DB file you decide to use db.sql or whatever it is called, you need to make sure that it is UNZIPPED and located in the directory \mysql\bin. Now follow these steps in creating a DB (which, again, you have done, but just to help alleviate ANY confusion as to what to do). Click start>run>type "cmd" (without the quotes) hit enter.. Now in the DOS command window type the following, hitting enter after every line (also note that I have changed the name of your DB so that you can have more than one existing without losing the one you previously had)..
Code:
mysql -b -u root mysql (the -b parameter turns off that nasty pc speaker)
GRANT ALL PRIVILEGES ON *.* TO <mysql usernam>@localhost IDENTIFIED BY '<mysql password>' WITH GRANT OPTION; (use this only if you havent used it before, and dont use the < and > keys)
CREATE DATABASE eq2;
USE eq2;
source <.sql file that you want to use>;
quit;
Close the DOS command window.
Now browse to your db.ini file which should be located in the same directory as your world.exe and zone.exe, and so on.. Edit this file... Here is how it should look, without the < and > keys:
Code:
[Database]
host=localhost
user=<mysql username>
password=<mysql password>
database=eq2
compression=off
Notice that I have changed the eq to eq2 becuse that is what you named the DB in the steps above..... You can have as many different DB's sourced at one time as you like, you just need a unique name for each one... All you have to do to use a different DB (such as switching from eq2, back to eq), is to edit your db.ini file and change eq2 back to just eq.
Hope this helps clear up any confusion you had...
