Package com.xiaoleilu.hutool.db.dialect.impl

Examples of com.xiaoleilu.hutool.db.dialect.impl.MysqlDialect


   * @return 方言
   */
  public static Dialect newDialect(String driverName) {
    if(StrUtil.isNotBlank(driverName)) {
      if(DRIVER_MYSQL.equalsIgnoreCase(driverName)) {
        return new MysqlDialect();
      }else  if(DRIVER_ORACLE.equalsIgnoreCase(driverName)) {
        return new OracleDialect();
      }else  if(DRIVER_SQLLITE3.equalsIgnoreCase(driverName)) {
        return new Sqllite3Dialect();
      }
View Full Code Here

TOP

Related Classes of com.xiaoleilu.hutool.db.dialect.impl.MysqlDialect

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.