Package oracle.jdbc.replay
Interface OracleConnectionPoolDataSource
-
- All Superinterfaces:
CommonDataSource
,ConnectionPoolDataSource
,DataSource
,OracleCommonDataSource
,OracleConnectionPoolDataSource
,OracleDataSource
,OracleDataSource
,Wrapper
- All Known Subinterfaces:
OracleXADataSource
- All Known Implementing Classes:
oracle.jdbc.datasource.impl.OracleConnectionPoolDataSource
,OracleConnectionPoolDataSource
,OracleConnectionPoolDataSourceImpl
,OracleXADataSource
,OracleXADataSource
,OracleXADataSourceImpl
public interface OracleConnectionPoolDataSource extends OracleDataSource, OracleConnectionPoolDataSource
A data source that supports transparent failover replay of JDBC operations.
-
-
Field Summary
-
Fields inherited from interface oracle.jdbc.replay.OracleDataSource
CONNECTION_PROPERTIES, DATA_SOURCE_NAME, DATABASE_NAME, DESCRIPTION, EXPLICIT_CACHING_ENABLED, IMPLICIT_CACHING_ENABLED, MAX_STATEMENTS, NETWORK_PROTOCOL, PASSWORD, PORT_NUMBER, ROLE_NAME, SERVER_NAME, URL, USER
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PooledConnection
getPooledConnection()
Attempts to establish a database connection.PooledConnection
getPooledConnection(String user, String passwd)
Attempts to establish a database connection.-
Methods inherited from interface javax.sql.CommonDataSource
getParentLogger
-
Methods inherited from interface javax.sql.ConnectionPoolDataSource
getLoginTimeout, getLogWriter, setLoginTimeout, setLogWriter
-
Methods inherited from interface javax.sql.DataSource
getConnection, getConnection, getLoginTimeout, getLogWriter, setLoginTimeout, setLogWriter
-
Methods inherited from interface oracle.jdbc.datasource.OracleCommonDataSource
createShardingKeyBuilder, getConnectionProperties, getConnectionProperty, getDatabaseName, getDataSourceName, getDescription, getNetworkProtocol, getPortNumber, getServerName, getURL, getUser, setConnectionProperties, setConnectionProperty, setDatabaseName, setDataSourceName, setDescription, setNetworkProtocol, setPassword, setPortNumber, setServerName, setSingleShardTransactionSupport, setSSLContext, setURL, setUser
-
Methods inherited from interface oracle.jdbc.datasource.OracleConnectionPoolDataSource
createPooledConnectionBuilder
-
Methods inherited from interface oracle.jdbc.datasource.OracleDataSource
createConnectionBuilder
-
Methods inherited from interface oracle.jdbc.replay.OracleDataSource
clearReplayStatistics, getConnectionInitializationCallback, getExplicitCachingEnabled, getImplicitCachingEnabled, getMaxStatements, getReplayStatistics, getRoleName, registerConnectionInitializationCallback, setExplicitCachingEnabled, setImplicitCachingEnabled, setMaxStatements, setRoleName, unregisterConnectionInitializationCallback
-
Methods inherited from interface java.sql.Wrapper
isWrapperFor, unwrap
-
-
-
-
Method Detail
-
getPooledConnection
PooledConnection getPooledConnection() throws SQLException
Attempts to establish a database connection.- Specified by:
getPooledConnection
in interfaceConnectionPoolDataSource
- Returns:
- A PooledConnection to the database
- Throws:
SQLException
- if a database-access error occurs.
-
getPooledConnection
PooledConnection getPooledConnection(String user, String passwd) throws SQLException
Attempts to establish a database connection.- Specified by:
getPooledConnection
in interfaceConnectionPoolDataSource
- Parameters:
user
- The database user on whose behalf the Connection is being made.passwd
- The user's password- Returns:
- a PooledConnection to the database
- Throws:
SQLException
- if a database-access error occurs.
-
-