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