com.jpattern.orm.query.ISqlQuery Maven / Gradle / Ivy
package com.jpattern.orm.query;
import com.jpattern.orm.exception.OrmException;
/**
*
* @author Francesco Cina
*
* 09/lug/2011
*/
public interface ISqlQuery extends ICustomQuery, IQuery {
/**
* Set the maximum number of rows to return in the query.
* @param maxRows
* @return
*/
ISqlQuery setMaxRows(int maxRows) throws OrmException;
/**
* Set the query timeout for the query.
*/
ISqlQuery setQueryTimeout(int queryTimeout);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy