Package com.bleujin.framework.db.procedure

Examples of com.bleujin.framework.db.procedure.RepositoryService


    public String getDBType() {
        return dBName;
    }

    public RepositoryService getRepositoryService() {
        RepositoryService result ;
        if (dBName.equals(DBType.OracleDBName)) return RepositoryService.ORACLE;
        else if (dBName.equals(DBType.MSSQLDBName)) return RepositoryService.MSSQL ;
        else
            throw new IllegalArgumentException("not supported db type") ;
    }
View Full Code Here

TOP

Related Classes of com.bleujin.framework.db.procedure.RepositoryService

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.