18 lines
376 B
Java
18 lines
376 B
Java
package oracle.jdbc;
|
|
|
|
import java.io.IOException;
|
|
|
|
public interface OracleResultSetCache {
|
|
void clear() throws IOException;
|
|
|
|
void close() throws IOException;
|
|
|
|
Object get(int i, int i2) throws IOException;
|
|
|
|
void put(int i, int i2, Object obj) throws IOException;
|
|
|
|
void remove(int i) throws IOException;
|
|
|
|
void remove(int i, int i2) throws IOException;
|
|
}
|