java.sql.ShardingKey Java Examples
The following examples show how to use
java.sql.ShardingKey.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: TestConnection.java From apm-agent-java with Apache License 2.0 | 4 votes |
@Override public boolean setShardingKeyIfValid(ShardingKey shardingKey, ShardingKey superShardingKey, int timeout) throws SQLException { return delegate.setShardingKeyIfValid(shardingKey, superShardingKey, timeout); }
Example #2
Source File: TestConnection.java From apm-agent-java with Apache License 2.0 | 4 votes |
@Override public boolean setShardingKeyIfValid(ShardingKey shardingKey, int timeout) throws SQLException { return delegate.setShardingKeyIfValid(shardingKey, timeout); }
Example #3
Source File: TestConnection.java From apm-agent-java with Apache License 2.0 | 4 votes |
@Override public void setShardingKey(ShardingKey shardingKey, ShardingKey superShardingKey) throws SQLException { delegate.setShardingKey(shardingKey, superShardingKey); }
Example #4
Source File: TestConnection.java From apm-agent-java with Apache License 2.0 | 4 votes |
@Override public void setShardingKey(ShardingKey shardingKey) throws SQLException { delegate.setShardingKey(shardingKey); }
Example #5
Source File: Java9ConnectionDecorator.java From flexy-pool with Apache License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public boolean setShardingKeyIfValid(ShardingKey shardingKey, ShardingKey superShardingKey, int timeout) throws SQLException { return getTarget().setShardingKeyIfValid(shardingKey, superShardingKey, timeout); }
Example #6
Source File: Java9ConnectionDecorator.java From flexy-pool with Apache License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public boolean setShardingKeyIfValid(ShardingKey shardingKey, int timeout) throws SQLException { return getTarget().setShardingKeyIfValid(shardingKey, timeout); }
Example #7
Source File: Java9ConnectionDecorator.java From flexy-pool with Apache License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public void setShardingKey(ShardingKey shardingKey, ShardingKey superShardingKey) throws SQLException { getTarget().setShardingKey(shardingKey, superShardingKey); }
Example #8
Source File: Java9ConnectionDecorator.java From flexy-pool with Apache License 2.0 | 4 votes |
/** * {@inheritDoc} */ @Override public void setShardingKey(ShardingKey shardingKey) throws SQLException { getTarget().setShardingKey(shardingKey); }