我尝试连接MySQL数据库时遇到问题。我在mac(本地)上使用MAMP。我的数据库名称是" Hopital"。这是我的连接功能:
public Connexion(){
try{
Class.forName("com.mysql.jdbc.Driver");
System.out.println("Driver ok");
String url = "jdbc:mysql://localhost:8888/Hopital";
String user = "root";
String password = "root";
Connection cn = DriverManager.getConnection(url, user, password);
System.out.println("Connexion ok !");
}catch(Exception e){
e.printStackTrace():}
问题是我没有错误,但我的输出只是"驱动程序确定",另一个打印不起作用所以我猜连接不起作用。