All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface oracle.jdbc.driver.OracleResultSetCache

public interface OracleResultSetCache

Method Index

 o clear()
Remove all data from the cache.
 o close()
Close the cache.
 o get(int, int)
Return the data stored in the i-th row and j-th column.
 o put(int, int, Object)
Save the data in the i-th row and j-th column.
 o remove(int)
Remove the i-th row.
 o remove(int, int)
Remove the data stored in i-th row and j-th column

Methods

 o 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.

 o get
 public abstract Object get(int i,
                            int j) throws IOException
Return the data stored in the i-th row and j-th column.

 o remove
 public abstract void remove(int i) throws IOException
Remove the i-th row.

 o remove
 public abstract void remove(int i,
                             int j) throws IOException
Remove the data stored in i-th row and j-th column

 o clear
 public abstract void clear() throws IOException
Remove all data from the cache.

 o close
 public abstract void close() throws IOException
Close the cache.


All Packages  Class Hierarchy  This Package  Previous  Next  Index