View Single Post
  #7  
Old 08-22-2004, 10:27 AM
Darkwaters
Hill Giant
 
Join Date: Aug 2004
Location: Michigan
Posts: 118
Default

holy cow
Code:
Start-->Run-->CMD or Command [opens command prompt]
mysql -u root mysql
create database eq;
grant all privileges on * to mangler@localhost identified by 'im not showing you my pasword' with grant option; (*note make username lower case plz some issues arising on latest and greatest MySQL in regards to this.)
use eq;
source dbfilenamehere.sql;
quit
exit [exit cmd prompt]
Bam done. Where's the problem???
Darkwaters