24 lines
591 B
Java
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;
|
|
}
|