View Single Post
  #12  
Old 01-12-2004, 03:03 PM
nilar
Hill Giant
 
Join Date: Dec 2003
Location: The moon
Posts: 230
Default

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
Reply With Quote