Create a db dump file i.e. dbname.dump.
Inside the file write:
CRAETE TABLE country (
id INTEGER UNSIGNED auto_increment,
cc VARCHAR(11) NOT NULL,
description VARCHAR(100) NOT NULL,
PRIMARY KEY (id)
);
Then write:
INSERT INTO country VALUES (
values go here.
);
start up MSDOS change dir to mysql\bin:
Type:
C:\mysql\bin> mysqladmin create dbname
then type:
C:\mysql\bin> mysql dbname < dbname.dump
This should do the trick with a little modifiction.