在 android studio 中,我使用 MySQL 服务器 8.0.23 并尝试使用相同版本的 mysql 连接器连接到它,但我有一个错误,不知道如何修复它。
public static Connection GetConnection() throws SQLException {
try {
//the database connection details.
String url = "jdbc:mysql://localhost:3306/dbname";
String user = "";
String pass = "";
Class.forName("com.mysql.cj.jdbc.Driver").newInstance();
conn = DriverManager.getConnection(url, user, pass);
} catch (Exception e) {
//Log.d(LOG, e.getMessage());
System.out.println(e);
}
return conn;
}
我尝试了其他解决方案但无济于事,可能遗漏了一些简单但无法弄清楚的东西,任何帮助表示赞赏,顺便说一句,安全不是该程序的问题,以防万一有人提到私人项目。