All Packages Class Hierarchy This Package Previous Next Index
Interface oracle.jdbc.driver.OracleResultSetCache
- public interface OracleResultSetCache
-
clear()
- Remove all data from the cache.
-
close()
- Close the cache.
-
get(int, int)
- Return the data stored in the i-th row and j-th column.
-
put(int, int, Object)
- Save the data in the i-th row and j-th column.
-
remove(int)
- Remove the i-th row.
-
remove(int, int)
- Remove the data stored in i-th row and j-th column
put
public abstract void put(int i,
int j,
Object value) throws IOException
- Save the data in the i-th row and j-th column.
get
public abstract Object get(int i,
int j) throws IOException
- Return the data stored in the i-th row and j-th column.
remove
public abstract void remove(int i) throws IOException
- Remove the i-th row.
remove
public abstract void remove(int i,
int j) throws IOException
- Remove the data stored in i-th row and j-th column
clear
public abstract void clear() throws IOException
- Remove all data from the cache.
close
public abstract void close() throws IOException
- Close the cache.
All Packages Class Hierarchy This Package Previous Next Index