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

com.github.napp.database.ISelectQuery Maven / Gradle / Ivy

There is a newer version: 1.1.8
Show newest version
/**
 *
 */
package com.github.napp.database;

import java.util.List;

/**
 * @author Alexandru Bledea
 * @since Sep 25, 2013
 */
public interface ISelectQuery extends IQuery, IWhereQuery {

	/**
	 * @param max
	 */
	void setLimit(int max);

	/**
	 * @param start
	 * @param max
	 */
	void setLimit(int start, int max);

	/**
	 * @param property
	 * @param asc
	 */
	void setOrderBy(String property, boolean asc);

	/**
	 * @return
	 */
	List executeQuery();
}