mysql cycle
I still forget how to do the database and user creation and drop goes. So why not make a note.
Creating
create database test;
create user 'test' identified by 'pwtest';
grant all on test.* to 'test'@'localhost' identified by 'pwtest';
Cleaning up
drop user test;
drop database;
Yeah ... call me stupid ;-)