yeah, when you install mysql make sure you enable the PATH option (should be checked by default) and start up command line, cd\<dirofsql files>, then mysql -u root -p
<enter>
it'll ask for password
create database <dbname>; #Do this once first time you start sourcing.
use <dbname>;
source <filename.sql>; #Do this following the readme instructions
exit;
cd\ to new directory if any for new source files, do the above again. There's a bazillion ways to do this, I usually do the above. Heh.
|