niagara-ax/decompiled/oracle/jdbc/OracleResultSetCache.java
2026-03-17 13:31:18 -07:00

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;
}