
com.jpattern.orm.datasource.IStatement Maven / Gradle / Ivy
The newest version!
package com.jpattern.orm.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 - 2025 Weber Informatics LLC | Privacy Policy