niagara-ax/decompiled/oracle/jdbc/driver/ScrollRsetStatement.java
2026-03-17 13:31:18 -07:00

24 lines
591 B
Java

package oracle.jdbc.driver;
import java.sql.Connection;
import java.sql.SQLException;
import java.sql.Statement;
interface ScrollRsetStatement {
int copyBinds(Statement statement, int i) throws SQLException;
boolean getAutoRefetch() throws SQLException;
Connection getConnection() throws SQLException;
int getMaxFieldSize() throws SQLException;
String getOriginalSql() throws SQLException;
OracleResultSetCache getResultSetCache() throws SQLException;
void notifyCloseRset() throws SQLException;
void setAutoRefetch(boolean z) throws SQLException;
}