public interface PooledConnectionBuilder
ConnectionPoolDataSource
object, used to establish a connection to the database that the data source
object represents. The connection properties that were specified for the data source
are used as the default values by the PooledConnectionBuilder
. The following example illustrates the use of PooledConnectionBuilder
to create a XAConnection
:
ConnectionPoolDataSource ds = new MyConnectionPoolDataSource();
ShardingKey superShardingKey = ds.createShardingKeyBuilder()
.subkey("EASTERN_REGION", JDBCType.VARCHAR)
.build();
ShardingKey shardingKey = ds.createShardingKeyBuilder()
.subkey("PITTSBURGH_BRANCH", JDBCType.VARCHAR)
.build();
PooledConnection con = ds.createPooledConnectionBuilder()
.user("rafa")
.password("tennis")
.shardingKey(shardingKey)
.superShardingKey(superShardingKey)
.build();
Modifier and Type | Method | Description |
---|---|---|
PooledConnection |
build() |
Returns an instance of the object defined by this builder. |
PooledConnectionBuilder |
password |
Specifies the password to be used when creating a connection |
PooledConnectionBuilder |
shardingKey |
Specifies a shardingKey to be used when creating a connection |
PooledConnectionBuilder |
superShardingKey |
Specifies a superShardingKey to be used when creating a connection |
PooledConnectionBuilder |
user |
Specifies the username to be used when creating a connection |
PooledConnectionBuilder user(String username)
username
- the database user on whose behalf the connection is being madePooledConnectionBuilder
instancePooledConnectionBuilder password(String password)
password
- the password to use for this connection. May be null
PooledConnectionBuilder
instancePooledConnectionBuilder shardingKey(ShardingKey shardingKey)
shardingKey
to be used when creating a connectionshardingKey
- the ShardingKey. May be null
PooledConnectionBuilder
instancePooledConnectionBuilder superShardingKey(ShardingKey superShardingKey)
superShardingKey
to be used when creating a connectionsuperShardingKey
- the SuperShardingKey. May be null
PooledConnectionBuilder
instancePooledConnection build() throws SQLException
SQLException
- If an error occurs building the object
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.sql/javax/sql/PooledConnectionBuilder.html