Package org.qdao.implement.oracle

Examples of org.qdao.implement.oracle.OracleEntityDao


    if (null == config || config.driver == null) {
      return new DefaultEntityDao(this, entity, isLogger);
    }
    String driverLowerCase = config.driver.toLowerCase();
    if (driverLowerCase.indexOf("oracle") != -1) {
      return new OracleEntityDao(this, entity, isLogger);
    } else if (driverLowerCase.indexOf("mysql") != -1) {
      return new MySqlEntityDao(this, entity, isLogger);
    }
    return new DefaultEntityDao(this, entity, isLogger);
  }
View Full Code Here

TOP

Related Classes of org.qdao.implement.oracle.OracleEntityDao

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.