To run this application:

- Copy the MySQL JDBC driver (JAR file) to <TOMCAT_HOME>/lib.

- Use the following SQL script to create a schema named "DemoClasses" and a
  table named "Students" in your MySQL database

    CREATE SCHEMA IF NOT EXISTS `DemoClasses`;

    CREATE  TABLE IF NOT EXISTS `DemoClasses`.`Students` (
      `ubid` INT(11) NOT NULL ,
      `firstName` VARCHAR(80) NULL DEFAULT NULL ,
      `middleName` VARCHAR(50) NULL DEFAULT NULL ,
      `lastName` VARCHAR(80) NOT NULL ,
      PRIMARY KEY (`ubid`) )
    ENGINE = MyISAM
    DEFAULT CHARACTER SET = utf8;

- Within META-INF/context.xml, change "url", "username" and "password"
  accordingly.
