I want to connect my java program to connect with database and retrieve the data. its compile perfectly but runtime im getting this Error : Could not find or load main cla
Error : Could not find or load main cla
Default port for mysql connections is 3306. So change this line
String url = "jdbc:mysql://localhost:80/";
to this:
String url = "jdbc:mysql://localhost:3306/";