Místo použití:
String uname="[email protected]";
Použít:
String url="jdbc:mysql://localhost:3306/student";
String userName="root"
String password="Hsun123"
...
try{
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection con=DriverManager.getConnection(url,username,password);
...
To by mělo fungovat (za předpokladu, že nastavujete platné heslo)