我正在尝试使用java更改mysql上的用户密码, 我成功地在phpmyadmin上更改了它 但是同样的命令在java上不起作用
SET PASSWORD = PASSWORD('12345')
此命令将更改当前登录的用户,我已尝试过像这样的
statement = connect.createStatement();
statement.executeUpdate("SET PASSWORD = PASSWORD('12345')");
但没有发生
我也尝试过root登录
statement = connect.createStatement();
statement.executeUpdate("SET PASSWORD FOR 'username'@'localhost' = PASSWORD('123456')");
没有任何效果,请帮忙
答案 0 :(得分:1)
您应该使用executeQuery()
方法而不是executeUpdate()
statement = connect.createStatement();
statement.executeQuery("SET PASSWORD FOR 'username'@'localhost' = PASSWORD('123456')");
注意只能使用上述查询更改已知密码。
例如,如果root密码为example
,那么为了创建连接,我们使用
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "example");
因此,使用此连接我们只能更改当前密码。
以下是基于this code at roseindia.net的示例:
import java.sql.*;
class ChangeRootPassword
{
public static void main(String[] args)
{
try{
Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/test", "root", "example");
String sql = "SET PASSWORD FOR 'root'@'localhost' = PASSWORD('test')";
Statement stmt = conn.createStatement();
stmt.executeQuery(sql);
stmt.close();
conn.close();
System.out.println("Password is changed successfully!");
}
catch(Exception ex){
ex.printStackTrace();
}
}
}
所以新的mysql root密码现在是 test