All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.tangjiabao.halodb.core.dialect.MySQLDialect Maven / Gradle / Ivy

Go to download

Orm whitch The highest development efficiency and Efficiency is the fastest

There is a newer version: 0.17
Show newest version
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