try { String url = "jdbc:mysql://localhost:3306/mydb"; Class.forName ("com.mysql.jdbc.Driver").newInstance (); Connection conn = DriverManager.getConnection (url, user, pwd); } catch (Exception e){ System.out.println("Unable to establish connection " + e.getMessage()); }