View Single Post
  #4  
Old 03-02-2010, 12:22 AM
trevius's Avatar
trevius
Developer
 
Join Date: Aug 2006
Location: USA
Posts: 5,946
Default

Try adding in the full path to those files you are trying to source. If they are stored in "C:\peqdb\", then you would need to enter something like this instead:

Code:
source C:\peqdb\peqdb_rev1265.sql;
Otherwise, you can always do it by opening the command prompt (start>run then type "cmd"and click ok). Then, go to the folder where your .sql files are by doing something like:

Code:
c:
cd peqdb
Then start mysql by doing this:

Code:
mysql -u root -p
You can reply "root" in that command with whatever username you created for your database. Then, log in with your password when prompted.

Then, continue the rest of the steps such as:

Code:
use peq
And so on as instructed. Since you started in the folder with your SQL files, it shouldn't have a problem finding them anymore.
__________________
Trevazar/Trevius Owner of: Storm Haven
Everquest Emulator FAQ (Frequently Asked Questions) - Read It!
Reply With Quote