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

com.jpattern.orm.query.delete.DeleteQueryCommon Maven / Gradle / Ivy

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

import com.jpattern.orm.query.QueryRoot;
import com.jpattern.orm.query.RenderableSqlQuery;

/**
 * 
 * @author Francesco Cina
 *
 * 10/lug/2011
 */
public interface DeleteQueryCommon extends QueryRoot, RenderableSqlQuery {

	/**
	 * Perform the update and return the number of affected rows.
	 * @return
	 */
	int perform();

	/**
	 * Set the query timeout for the query.
	 */
	DeleteQuery setQueryTimeout(int queryTimeout);

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy