Class EmbeddedConnectionPoolDataSource
- All Implemented Interfaces:
Serializable, Wrapper, Referenceable, ObjectFactory, CommonDataSource, ConnectionPoolDataSource, DataSource, EmbeddedConnectionPoolDataSourceInterface, EmbeddedDataSourceInterface
- Direct Known Subclasses:
EmbeddedConnectionPoolDataSource40
This datasource is suitable for an application using embedded Derby, running on full Java SE 6 and higher, corresponding to 4.0 and higher. EmbeddedConnectionPoolDataSource is a ConnectionPoolDataSource implementation.
A ConnectionPoolDataSource is a factory for PooledConnection objects. An object that implements this interface will typically be registered with a JNDI service.
EmbeddedConnectionPoolDataSource automatically supports the correct JDBC specification version for the Java Virtual Machine's environment.
- JDBC 4.0 - Java SE 6
- JDBC 4.1 - Java SE 7
- JDBC 4.2 - full Java SE 8
Use BasicEmbeddedConnectionPoolDataSource40 if your application runs on Java 8 Compact Profile 2.
EmbeddedConnectionPoolDataSource is serializable and referenceable.
See EmbeddedDataSource for DataSource properties.
- See Also:
-
Field Summary
FieldsFields inherited from class BasicEmbeddedDataSource40
attributesAsPassword, connectionAttributes, createDatabase, databaseName, dataSourceName, description, driver, jdbcurl, loginTimeout, shutdownDatabase -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprivate PooledConnectioncreatePooledConnection(String user, String password, boolean requestPassword) Create and return an EmbedPooledConnection from this instance of EmbeddedConnectionPoolDataSource.final PooledConnectionAttempt to establish a database connection.final PooledConnectiongetPooledConnection(String username, String password) Attempt to establish a database connection.Methods inherited from class EmbeddedDataSource
getObjectInstance, getReferenceMethods inherited from class BasicEmbeddedDataSource40
equals, findDriver, getAttributesAsPassword, getConnection, getConnection, getConnection, getConnectionAttributes, getCreateDatabase, getDatabaseName, getDataSourceName, getDescription, getLoginTimeout, getLogWriter, getParentLogger, getPassword, getShutdownDatabase, getUser, hashCode, isWrapperFor, setAttributesAsPassword, setConnectionAttributes, setCreateDatabase, setDatabaseName, setDataSourceName, setDescription, setLoginTimeout, setLogWriter, setPassword, setShutdownDatabase, setupResourceAdapter, setUser, unwrap, updateMethods inherited from class Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface CommonDataSource
createShardingKeyBuilder, getParentLoggerMethods inherited from interface ConnectionPoolDataSource
createPooledConnectionBuilder, getLoginTimeout, getLogWriter, setLoginTimeout, setLogWriterMethods inherited from interface DataSource
createConnectionBuilder, getConnection, getConnection, getLoginTimeout, getLogWriter, setLoginTimeout, setLogWriterMethods inherited from interface EmbeddedDataSourceInterface
getAttributesAsPassword, getConnectionAttributes, getCreateDatabase, getDatabaseName, getDataSourceName, getDescription, getPassword, getShutdownDatabase, getUser, setAttributesAsPassword, setConnectionAttributes, setCreateDatabase, setDatabaseName, setDataSourceName, setDescription, setPassword, setShutdownDatabase, setUserMethods inherited from interface Wrapper
isWrapperFor, unwrap
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
EmbeddedConnectionPoolDataSource
public EmbeddedConnectionPoolDataSource()No-arg constructor.
-
-
Method Details
-
getPooledConnection
Attempt to establish a database connection.- Specified by:
getPooledConnectionin interfaceConnectionPoolDataSource- Returns:
- a Connection to the database
- Throws:
SQLException- if a database-access error occurs.
-
getPooledConnection
public final PooledConnection getPooledConnection(String username, String password) throws SQLException Attempt to establish a database connection.- Specified by:
getPooledConnectionin interfaceConnectionPoolDataSource- Parameters:
username- the database user on whose behalf the Connection is being madepassword- the user's password- Returns:
- a Connection to the database
- Throws:
SQLException- if a database-access error occurs.
-
createPooledConnection
private PooledConnection createPooledConnection(String user, String password, boolean requestPassword) throws SQLException Create and return an EmbedPooledConnection from this instance of EmbeddedConnectionPoolDataSource.- Parameters:
user- The user namepassword- The passwordrequestPassword- @falseif original call is from a no-argument constructor, otherwisetrue- Returns:
- A pooled connection
- Throws:
SQLException- An error occurred
-