使用JDBC连接到本地MySQL数据库

时间:2018-04-16 09:45:02

标签: java mysql jdbc

我尝试连接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():}

问题是我没有错误,但我的输出只是"驱动程序确定",另一个打印不起作用所以我猜连接不起作用。

0 个答案:

没有答案