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

com.jpattern.orm.query.SqlExecuteQuery Maven / Gradle / Ivy

There is a newer version: 3.5.1
Show newest version
package com.jpattern.orm.query;

/**
 * 
 * @author Francesco Cina
 *
 * 09/lug/2011
 */
public interface SqlExecuteQuery extends IQueryRoot {

	/**
	 * execute the sql statement and doesn't return any information about the rows modified.
	 */
	void execute();

	/**
	 * Set the query timeout for the query.
	 */
	public abstract void setQueryTimeout(int queryTimeout);

	/**
	 * Return the query timeout for the query.
	 */
	public abstract int getQueryTimeout();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy