Oracle10g JDBC

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

Throws:
java.io.IOException

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.

Throws:
java.io.IOException

remove

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

Throws:
java.io.IOException

remove

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

Throws:
java.io.IOException

clear

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

Throws:
java.io.IOException

close

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

Throws:
java.io.IOException

Oracle10g JDBC

Copyright © 1998,2004, Oracle. All rights reserved