Download MySQL JDBC Driver:
http://dev.mysql.com/downloads/connector/j/
1 2 3 4 |
Class.forName("com.mysql.jdbc.Driver"); Connection connection = null; connection = DriverManager.getConnection("jdbc:mysql://hostname:port/dbname", "username", "password"); connection.close(); |