尝试创建MySQL连接时在Java中获取Access denied for user 'root'@'1-' (using password: YES)
。
你可以看到我将所有prvileges设置为mysql中的任何用户。那么为什么然后我得到访问错误? Java中有连接代码:
Class.forName("com.mysql.jdbc.Driver").newInstance();
String ip = InetAddress.getLocalHost().getHostAddress();
Connection connection = DriverManager.getConnection("jdbc:mysql://" + ip + ":3306/forum","root","correct_password_there");