mysql cycle
Submitted by clemens on Mon, 2008/03/03 - 12:18pm
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 ;-)
Comments
set password for