I made connection between my program and a database in phpMyAdmin, this is the connection method:
public Connection getConnection() throws SQLException{
Connection con=null;
con=DriverManager.getConnection("jdbc:mysql://localhost/testdb","
","");
return con;
}