14 lines
398 B
Java
14 lines
398 B
Java
package oracle.jdbc.pool;
|
|
|
|
import java.sql.SQLException;
|
|
import javax.sql.DataSource;
|
|
import javax.sql.PooledConnection;
|
|
|
|
public interface OracleConnectionCache extends DataSource {
|
|
void close() throws SQLException;
|
|
|
|
void closePooledConnection(PooledConnection pooledConnection) throws SQLException;
|
|
|
|
void reusePooledConnection(PooledConnection pooledConnection) throws SQLException;
|
|
}
|