Package com.btmatthews.maven.plugins.inmemdb.db.derby

Examples of com.btmatthews.maven.plugins.inmemdb.db.derby.DerbyDatabase


            final String password) {
        Database database;
        if (TYPE_HSQLDB.equals(type)) {
            database = new HSQLDBDatabase(databaseName, username, password);
        } else if (TYPE_DERBY.equals(type)) {
            database = new DerbyDatabase(databaseName, username, password);
        } else {
            database = null;
        }
        return database;
    }
View Full Code Here

TOP

Related Classes of com.btmatthews.maven.plugins.inmemdb.db.derby.DerbyDatabase

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.