Examples of DbTableServiceI


Examples of org.jeecgframework.web.cgform.service.config.DbTableServiceI

  /**
   * 获取DB 维护表的工具类
   * @return
   */
  public static DbTableServiceI getTableUtil(Session  session) {
    DbTableServiceI tableUtil = null;
    String dialect = ((SessionImpl)session).getFactory().getDialect()
        .getClass().getName();
    if (dialect.equals("org.hibernate.dialect.MySQLDialect")) {
      tableUtil = new DbTableServiceMysqlImpl();
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.