View Single Post
  #8  
Old 04-14-2002, 06:33 PM
Lurker_005
Demi-God
 
Join Date: Jan 2002
Location: Tourist town USA
Posts: 1,671
Default

Mysql has a reasonably readable help file that will tell you all kinds of things you cn do with it. That being said, create and load the data for a database this way:
Code:
Copy db.sql to your mysql/bin directory
Open a dos window
cd to your mysql/bin directory
mysql.exe
create database eq;
source db.sql
exit
Use another name besides eq for the database if you want.
Reply With Quote