Uses of Interface
oracle.jdbc.OracleShardingKey
-
Packages that use OracleShardingKey Package Description oracle.jdbc Beginning in Oracle9i, the Oracle extensions to JDBC are captured in the packageoracle.jdbc
.oracle.jdbc.datasource Beginning in Oracle Release 12.2, some of the Oracle extensions to JDBC are captured in the packageoracle.jdbc.datasource
.oracle.jdbc.pool A package of connection cache and pooling related classes. -
-
Uses of OracleShardingKey in oracle.jdbc
Methods in oracle.jdbc that return OracleShardingKey Modifier and Type Method Description OracleShardingKey
OracleShardingKeyBuilder. build()
Builds the Sharding key.Methods in oracle.jdbc with parameters of type OracleShardingKey Modifier and Type Method Description void
OracleConnection. setShardingKey(OracleShardingKey shardingKey)
Sets the sharding key on this connection.void
OracleConnection. setShardingKey(OracleShardingKey shardingKey, OracleShardingKey superShardingKey)
Sets the sharding key and the super sharding key on this connection.void
OracleConnectionWrapper. setShardingKey(OracleShardingKey shardingKey)
void
OracleConnectionWrapper. setShardingKey(OracleShardingKey key, OracleShardingKey superKey)
boolean
OracleConnection. setShardingKeyIfValid(OracleShardingKey shardingKey, int timeout)
Checks the validity of the connection and also checks if the sharding key passed to this method is valid for the connection.If the sharding key is valid, it will be set on the connection.boolean
OracleConnection. setShardingKeyIfValid(OracleShardingKey shardingKey, OracleShardingKey superShardingKey, int timeout)
Checks the validity of the connection and also checks if the sharding keys passed to this method are valid for the connection.If the sharding keys are valid, it will be set on the connection.boolean
OracleConnectionWrapper. setShardingKeyIfValid(OracleShardingKey shardingKey, int timeout)
boolean
OracleConnectionWrapper. setShardingKeyIfValid(OracleShardingKey key, OracleShardingKey superKey, int timeout)
OracleConnectionBuilder
OracleConnectionBuilder. shardingKey(OracleShardingKey shardingKey)
OraclePooledConnectionBuilder
OraclePooledConnectionBuilder. shardingKey(OracleShardingKey shardingKey)
OracleXAConnectionBuilder
OracleXAConnectionBuilder. shardingKey(OracleShardingKey shardingKey)
OracleConnectionBuilder
OracleConnectionBuilder. superShardingKey(OracleShardingKey superShardingKey)
OraclePooledConnectionBuilder
OraclePooledConnectionBuilder. superShardingKey(OracleShardingKey superShardingKey)
OracleXAConnectionBuilder
OracleXAConnectionBuilder. superShardingKey(OracleShardingKey superShardingKey)
-
Uses of OracleShardingKey in oracle.jdbc.datasource
Methods in oracle.jdbc.datasource with parameters of type OracleShardingKey Modifier and Type Method Description void
OraclePooledConnection. setShardingKey(OracleShardingKey shardingKey, OracleShardingKey superShardingKey)
Sets the sharding key and the super sharding key on this connection.boolean
OraclePooledConnection. setShardingKeyIfValid(OracleShardingKey shardingKey, OracleShardingKey superShardingKey, int timeout)
Checks the validity of the connection and also checks if the sharding keys passed to this method are valid for the connection.If the sharding keys are valid, it will be set on the connection. -
Uses of OracleShardingKey in oracle.jdbc.pool
Classes in oracle.jdbc.pool that implement OracleShardingKey Modifier and Type Class Description class
OracleShardingKeyImpl
Methods in oracle.jdbc.pool with parameters of type OracleShardingKey Modifier and Type Method Description int
OracleShardingKeyImpl. compareTo(OracleShardingKey o)
Used to compare two OracleShardingKey keys.void
OraclePooledConnection. setShardingKey(OracleShardingKey shardingKey, OracleShardingKey superShardingKey)
Sets the sharding key and the super sharding key on this connection.boolean
OraclePooledConnection. setShardingKeyIfValid(OracleShardingKey shardingKey, OracleShardingKey superShardingKey, int timeout)
Checks the validity of the connection and also checks if the sharding keys passed to this method are valid for the connection.If the sharding keys are valid, it will be set on the connection's session.
-