oracle.jdbc
Interface OracleResultSetCache


public abstract interface OracleResultSetCache

Oracle result set cache interface.


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

Method Detail

put

public void put(int i,
                int j,
                java.lang.Object value)
         throws java.io.IOException
Save the data in the i-th row and j-th column.

get

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

remove

public void remove(int i)
            throws java.io.IOException
Remove the i-th row.

remove

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

clear

public void clear()
           throws java.io.IOException
Remove all data from the cache.

close

public void close()
           throws java.io.IOException
Close the cache.