java.io.Serializable, java.sql.Wrapper, javax.naming.Referenceable, javax.naming.spi.ObjectFactory, javax.sql.CommonDataSource, javax.sql.ConnectionPoolDataSource, javax.sql.DataSource, EmbeddedConnectionPoolDataSourceInterface, EmbeddedDataSourceInterfaceEmbeddedConnectionPoolDataSource40public class EmbeddedConnectionPoolDataSource extends EmbeddedDataSource implements EmbeddedConnectionPoolDataSourceInterface
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.
Use BasicEmbeddedConnectionPoolDataSource40 if your application runs on Java 8 Compact Profile 2.
EmbeddedConnectionPoolDataSource is serializable and referenceable.
See EmbeddedDataSource for DataSource properties.
| Modifier and Type | Field | Description |
|---|---|---|
private static long |
serialVersionUID |
attributesAsPassword, connectionAttributes, createDatabase, databaseName, dataSourceName, description, driver, jdbcurl, loginTimeout, shutdownDatabase| Constructor | Description |
|---|---|
EmbeddedConnectionPoolDataSource() |
No-arg constructor.
|
| Modifier and Type | Method | Description |
|---|---|---|
private javax.sql.PooledConnection |
createPooledConnection(java.lang.String user,
java.lang.String password,
boolean requestPassword) |
Create and return an EmbedPooledConnection from this instance
of EmbeddedConnectionPoolDataSource.
|
javax.sql.PooledConnection |
getPooledConnection() |
Attempt to establish a database connection.
|
javax.sql.PooledConnection |
getPooledConnection(java.lang.String username,
java.lang.String password) |
Attempt to establish a database connection.
|
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, updatecreateShardingKeyBuilder, getParentLoggercreatePooledConnectionBuilder, getLoginTimeout, getLogWriter, setLoginTimeout, setLogWritercreateConnectionBuilder, getConnection, getConnection, getLoginTimeout, getLogWriter, setLoginTimeout, setLogWritergetObjectInstance, getReferencegetAttributesAsPassword, getConnectionAttributes, getCreateDatabase, getDatabaseName, getDataSourceName, getDescription, getPassword, getShutdownDatabase, getUser, setAttributesAsPassword, setConnectionAttributes, setCreateDatabase, setDatabaseName, setDataSourceName, setDescription, setPassword, setShutdownDatabase, setUserprivate static final long serialVersionUID
public EmbeddedConnectionPoolDataSource()
public final javax.sql.PooledConnection getPooledConnection()
throws java.sql.SQLException
getPooledConnection in interface javax.sql.ConnectionPoolDataSourcejava.sql.SQLException - if a database-access error occurs.public final javax.sql.PooledConnection getPooledConnection(java.lang.String username,
java.lang.String password)
throws java.sql.SQLException
getPooledConnection in interface javax.sql.ConnectionPoolDataSourceusername - the database user on whose behalf the Connection is being madepassword - the user's passwordjava.sql.SQLException - if a database-access error occurs.private javax.sql.PooledConnection createPooledConnection(java.lang.String user,
java.lang.String password,
boolean requestPassword)
throws java.sql.SQLException
user - The user namepassword - The passwordrequestPassword - java.sql.SQLException - An error occurredApache Derby V10.14 Internals - Copyright © 2004,2018 The Apache Software Foundation. All Rights Reserved.