Package xbird.util.jdbc.impl

Examples of xbird.util.jdbc.impl.DerbyAccessor


            return dbAccessor;
        final DBAccessor dba;
        if(KIND_POSTGRES.equals(DB_KIND)) {
            dba = new PGAccessor();
        } else if(KIND_DERBY.equals(DB_KIND)) {
            dba = new DerbyAccessor();
        } else {
            throw new UnsupportedOperationException("Unsupported DB kind: " + DB_KIND);
        }
        dbAccessor = dba; // set reference.
        return dba;
View Full Code Here

TOP

Related Classes of xbird.util.jdbc.impl.DerbyAccessor

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.