Oracle JDBC API Reference
11g Release 2 ("11.2.0.3.0")

oracle.jdbc
Interface OracleResultSetCache


public 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 row, int column)
          Return the data stored in the row-th row and column-th column.
 void put(int row, int column, java.lang.Object value)
          Save the data in the row-th row and column-th column.
 void remove(int row)
          Remove the row-th row.
 void remove(int row, int column)
          Remove the data stored in row-th row and column-th column
 

Method Detail

put

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

Parameters:
row -
column -
value -
Throws:
java.io.IOException

get

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

Parameters:
row -
column -
Returns:
Throws:
java.io.IOException

remove

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

Parameters:
row -
Throws:
java.io.IOException

remove

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

Parameters:
row -
column -
Throws:
java.io.IOException

clear

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

Throws:
java.io.IOException

close

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

Throws:
java.io.IOException

Oracle JDBC API Reference
11g Release 2 ("11.2.0.3.0")

Copyright © 1998, 2007, Oracle. All rights reserved.