com.mysql.jdbc.exceptions.jdbc4.MysqlSyntaxErrorException:拒绝访问用户“@'本地主机'到数据库'mysql'

时间:2013-12-15 09:25:29

标签: java mysql jdbc netbeans-7

com.mysql.jdbc.exceptions.jdbc4.MysqlSyntaxErrorException:Access denied for user "@'local host' to database 'mysql'

这是我的问题。每次我尝试执行时都会收到此错误。

我已经尝试过这个:

GRANT ALL PRIVILEGES 
ON GUEST_BOOK.* TO 'root'@'%' 
IDENTIFIED BY 'D7n()st1234' WITH GRANT OPTION;

2 个答案:

答案 0 :(得分:1)

您正在以''用户身份连接(如在零长度字符串中),您需要正确指定用户名

答案 1 :(得分:0)

connection = DriverManager.getConnection(URL,USERNAME,PASSWORD); 确保“USERNAME”和“PASSWORD”不是“忘记”