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

com.github.drinkjava2.jdialects.PaginateSupport Maven / Gradle / Ivy

Go to download

jDbPro is a JDBC tool based on Apache Commons DbUtils but made some improvements

There is a newer version: 2.0.2
Show newest version
/*
 * jDialects, a tiny SQL dialect tool
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later. See
 * the lgpl.txt file in the root directory or
 * .
 */
package com.github.drinkjava2.jdialects;

/**
 * Interface which has a paginate method
 * 
 * @author Yong Zhu
 * @since 1.0.0
 */
public interface PaginateSupport {
	
	/**
	 * Create a pagination SQL by given pageNumber, pageSize and SQL
* * @param pageNumber The page number, start from 1 * @param pageSize The page item size * @param sql The original SQL * @return The paginated SQL */ public String paginate(int pageNumber, int pageSize, String sql); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy