I have a MySQL database that I'm using for testing of a C# application. As a superuser, I enter the following 'query':
GRANT ALL PRIVILEGES ON testing.* TO 'Ubuntu'@'localhost';
to an affirmative message. Then, I log out of the database, log back in as Ubuntu, and run the following query on a localhost connection:
USE testing;
and receive this message:
ERROR 1044(42000): Access denied for user 'ubuntu'@'localhost' to database 'testing'
I've also run this query:
GRANT ALL PRIVILEGES ON testing.* TO 'Ubuntu'@'%';
with the same result.
What exactly am I missing? It seems like a fairly straightforward procedure...