I have connected Java to MySQL DB with the following code and it is working, Can anyone explain me what each line does?
Class.forName("com.mysql.jdbc.Driver").newInstance();
con = DriverManager.getConnection("jdbc:mysql://10.10.1.1/test","USERNAME","SATHE");
Statement stmt=con.createStatement();