| 
 Take the database file. Copy it into the mysql bin. Then go run a dos prompt.
 type in
 
 cd \mysql\bin
 
 mysql -u root mysql
 
 grant all privileges on *.* to yourmysqlusername@localhost identified by 'yourmysqlpassword' with grant option;
 
 create database eq;
 
 use eq;
 
 source nameofdbfile.sql;
 
 
 after all the lines scroll through your database should be loaded and you shouldnt recieve that error
 |