com.jpattern.orm.session.datasource.IStatement Maven / Gradle / Ivy
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