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

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


      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();
      }
    }
   
    return new AnsiSqlDialect();
  }
View Full Code Here

TOP

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

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.