Interface ConnectionBuilder
public interface ConnectionBuilder
A builder created from a DataSource
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 ConnectionBuilder
.
The following example illustrates the use of ConnectionBuilder
to create a Connection
:
DataSource ds = new MyDataSource(); ShardingKey superShardingKey = ds.createShardingKeyBuilder() .subkey("EASTERN_REGION", JDBCType.VARCHAR) .build(); ShardingKey shardingKey = ds.createShardingKeyBuilder() .subkey("PITTSBURGH_BRANCH", JDBCType.VARCHAR) .build(); Connection con = ds.createConnectionBuilder() .user("rafa") .password("tennis") .setShardingKey(shardingKey) .setSuperShardingKey(superShardingKey) .build();
- Since:
- 9
Methods
Modifier and Type | Method | Description |
---|---|---|
Connection | build() | Returns an instance of the object defined by this builder. |
ConnectionBuilder | password(String password) | Specifies the password to be used when creating a connection |
ConnectionBuilder | shardingKey(ShardingKey shardingKey) | Specifies a |
ConnectionBuilder | superShardingKey(ShardingKey superShardingKey) | Specifies a |
ConnectionBuilder | user(String username) | Specifies the username to be used when creating a connection |
Methods
user
ConnectionBuilder user(String username)
Specifies the username to be used when creating a connection
- Parameters:
-
username
- the database user on whose behalf the connection is being made - Returns:
- the same
ConnectionBuilder
instance
password
ConnectionBuilder password(String password)
Specifies the password to be used when creating a connection
- Parameters:
-
password
- the password to use for this connection. May benull
- Returns:
- the same
ConnectionBuilder
instance
shardingKey
ConnectionBuilder shardingKey(ShardingKey shardingKey)
Specifies a shardingKey
to be used when creating a connection
- Parameters:
-
shardingKey
- the ShardingKey. May benull
- Returns:
- the same
ConnectionBuilder
instance - See Also:
-
ShardingKey
,ShardingKeyBuilder
superShardingKey
ConnectionBuilder superShardingKey(ShardingKey superShardingKey)
Specifies a superShardingKey
to be used when creating a connection
- Parameters:
-
superShardingKey
- the SuperShardingKey. May benull
- Returns:
- the same
ConnectionBuilder
instance - See Also:
-
ShardingKey
,ShardingKeyBuilder
build
Connection build() throws SQLException
Returns an instance of the object defined by this builder.
- Returns:
- The built object
- Throws:
-
SQLException
- If an error occurs building the object
© 1993, 2020, 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/11/docs/api/java.sql/java/sql/ConnectionBuilder.html