No Database selected when retrieving from mysql website

后端 未结 3 2030
半阙折子戏
半阙折子戏 2020-11-28 16:29

I have a mysql database that I am trying to retrieve from our website host (godaddy). I followed a format that seems to be right but it tells me that:

java.         


        
3条回答
  •  南笙
    南笙 (楼主)
    2020-11-28 16:30

    Your URL for your database should include your database name. This is normally your URL followed by a "/DBNAME".

    String URL = "jdbc:mysql://localhost:3306/mydb";

    Where "mydb" is your database name.

提交回复
热议问题