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

com.jpattern.orm.session.datasource.IStatement Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.session.datasource;

import java.sql.SQLException;

/**
 * 
 * @author ufo
 *
 */
public interface IStatement {

	void setQueryTimeout(int queryTimeout) throws SQLException;

	void addBatch(String sql) throws SQLException;

	int[] executeBatch() throws SQLException;

	void close() throws SQLException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy