Connecting to Mysql
From MyWiki
import.java.sql.*; { Connection con = null; Statement stmt = null; ResultSet rs = null; String userName = ""; String passWord = ""; String url = "jdbc:mysql://localhost<dbname>" Class.forName("com.mysql.jdbc.Driver").newInstance(); con = DriverManager.getConnection(url,userName,passWorrd);