cn.tangjiabao.halodb.core.dialect.MySQLDialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of haloDb Show documentation
Show all versions of haloDb Show documentation
Orm whitch The highest development efficiency and Efficiency is the fastest
package cn.tangjiabao.halodb.core.dialect;
import cn.tangjiabao.halodb.utils.string.StringUtils;
/**
*mysql方言
* @author [email protected]
* @date 2015-6-14 下午12:47:21
*/
public class MySQLDialect implements Dialect {
@Override
public String getPageSql(String sql, int beginNo, int endNo) {
return StringUtils.format("{0} limit {1},{2} ", sql, beginNo, endNo);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy