No Database selected when retrieving from mysql website

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.

Leave a Comment