Tuesday, December 20, 2011

Re: Access denied

I found the solution at this tutorial:
http://mandubian.tumblr.com/post/13459210142/tutorial-for-googlecloudsql-with-play-1-2-3-siena
Just create the user:
CREATE DATABASE tweetdemo;
CREATE USER 'tweetdemo'@'localhost' identified by 'xxxxxx';
GRANT ALL PRIVILEGES ON tweetdemo.* TO 'tweetdemo'@'localhost'
Seems to be that google did not created default access from the
default email account.
But thanks for Answer!

No comments:

Post a Comment