create a new mysql db & user and grant privs

mysql> create database wombat;
Query OK, 1 row affected (0.00 sec)

mysql> grant all privileges on wombat.* to wombat@localhost identified by 'wombat';
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)