Package oracle.jdbc.datasource
Beginning in Oracle Release 12.2, some of the Oracle extensions to JDBC are captured in the package
oracle.jdbc.datasource
. This package contains interfaces that extend standard JDBC interfaces in javax.sql
.
Your code should use the package oracle.jdbc.datasource
instead of packages that hold implementation classes for the Oracle JDBC extension interfaces, such as oracle.jdbc.pool
. Conversion is highly recommended as there may be unsupported features in future releases, if your code continues to use the latter.
- Since:
- 12.2
- See Also:
javax.sql
,OracleDataSource
,OracleConnectionPoolDataSource
-
Interface Summary Interface Description OracleCommonDataSource Interface that defines the methods which are common betweenOracleDataSource
,OracleXADataSource
andOracleConnectionPoolDataSource
and defines the Oracle extensions to the standard JDBC interfaceCommonDataSource
.OracleConnectionPoolDataSource This interface defines the Oracle extensions to the standard JDBC interfaceConnectionPoolDataSource
.OracleDataSource This interface defines the Oracle extensions to the standard JDBC interfaceDataSource
.OraclePooledConnection This interface defines the Oracle extensions to the standard JDBC interfacePooledConnection
.OracleXAConnection This interface defines the Oracle extensions to the standard JDBC interfaceXAConnection
.OracleXADataSource This interface defines the Oracle extensions to the standard JDBC interfaceXADataSource
.