MySQL

Installing MySQL

Using MySQL
Connecting to MySQL from with Java
Example:
    //DriverManager establishes connection to database
    // Needs to find jdbc driver           
    Class.forName( "com.mysql.jdbc.Driver" );

    // connect to database books, user root with password macs443
    Connection connection = DriverManager.getConnection(
            "jdbc:mysql://localhost/books?user=root&password=macs443" );