com.github.liuanxin.page.dialect.impl.SQLServer2000Dialect Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mybatis-page Show documentation
Show all versions of mybatis-page Show documentation
database page with mybatis plugin
The newest version!
package com.github.liuanxin.page.dialect.impl;
import com.github.liuanxin.page.dialect.Dialect;
import com.github.liuanxin.page.model.PageBounds;
/**
* @author https://github.com/liuanxin
*/
public class SQLServer2000Dialect extends Dialect {
public SQLServer2000Dialect(String sql, PageBounds pageBounds) {
super(sql, pageBounds);
}
@Override
protected String getLimitString(String sql, String offsetName, int offset, String limitName, int limit) {
super.addPageParam(limitName, limit);
return SqlServerUtil.topPage(sql);
}
}