That version of mysql removed the create database option from mysql Admin....to add the database do the following:
go to your mysql\bin directory (example: C:\mysql\bin)
run mysql.exe
type:
create database eq;
(yes you need the ; at the end of the line)
That should create a database named eq for you.
|