Why not do it manually?
http://www.mysql.com/doc/en/mysqladmin.html
8.4 mysqladmin, Administering a MySQL Server
mysqladmin is a client for performing administrative operations. You can use it to check the server's configuration and current status, create and drop databases, and more.
Invoke mysqladmin like this:
shell> mysqladmin [options] command [command-option] command ...
mysqladmin supports the following commands:
create databasename
So drop to the shell and run
mysqladmin create databasename
Hope this helps some Bads
/JD