Create a connection to MySQL in Java
This time we are going to create a basic connection to MySQL in Java and pull some data from it.
// Compile it:
// javac Mysql.java
//
// Try it:
// java -classpath mysql-connector-java-5.1.27-bin.jar:. MySQL
import java.sql.Connection;
import …