与Java客户端连接时出现Mysql错误“未知数据库'mydb'”

时间:2018-10-28 07:32:26

标签: java mysql

我正在尝试连接Java和MySQL。但是数据库出现未知错误

public static void main(String[] args) {
    Connection con = null;

    try {
        Class.forName("com.mysql.jdbc.Driver");
        String url = "jdbc:mysql://localhost/mydb";
        String user = "root", pwd = "12345";
        con = DriverManager.getConnection(url, user, pwd);
        System.out.println(con);

    try {
        if(con != null && !con.isClosed())
            con.close();
    }catch (SQLException e) {
        e.printStackTrace();
    }


}
}
  

java.sql.SQLSyntaxErrorException:DB_5.main(DB_5.java:15)处的未知数据库“ mydb”

但是我检查了,MySQL中有 mydb

0 个答案:

没有答案