* Creates DataSource and loads local schema.
*/
private DataSource createDataSource() {
DataSource dataSource;
try {
dataSource = new PoolManager("org.hsqldb.jdbcDriver", "jdbc:hsqldb:mem:"
+ dbName, 1, 2, "sa", null);
}
catch (SQLException e) {
throw new RuntimeException("Error creating DataSource", e);
}