com.microsoft.sqlserver.jdbc.SQLServerConnection43 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mssql-jdbc Show documentation
Show all versions of mssql-jdbc Show documentation
Microsoft JDBC Driver for SQL Server.
/*
* Microsoft JDBC Driver for SQL Server Copyright(c) Microsoft Corporation All rights reserved. This program is made
* available under the terms of the MIT License. See the LICENSE file in the project root for more information.
*/
package com.microsoft.sqlserver.jdbc;
import java.sql.SQLException;
import java.sql.ShardingKey;
/**
* Extends {@link SQLServerConnection43} and implements {@link ISQLServerConnection43} with methods introduced in JDBC
* 4.3 Specifications. This class is used by the driver when initializing a class with with JDBC 4.3 Specs supported
* JVM.
*/
public class SQLServerConnection43 extends SQLServerConnection implements ISQLServerConnection43 {
/**
* Always refresh SerialVersionUID when prompted.
*/
private static final long serialVersionUID = -6904163521498951547L;
SQLServerConnection43(String parentInfo) throws SQLServerException {
super(parentInfo);
}
@Override
public void beginRequest() throws SQLException {
beginRequestInternal();
}
@Override
public void endRequest() throws SQLException {
endRequestInternal();
}
@Override
public void setShardingKey(ShardingKey shardingKey) throws SQLException {
SQLServerException.throwFeatureNotSupportedException();
}
@Override
public void setShardingKey(ShardingKey shardingKey, ShardingKey superShardingKey) throws SQLException {
SQLServerException.throwFeatureNotSupportedException();
}
@Override
public boolean setShardingKeyIfValid(ShardingKey shardingKey, int timeout) throws SQLException {
SQLServerException.throwFeatureNotSupportedException();
return false;
}
@Override
public boolean setShardingKeyIfValid(ShardingKey shardingKey, ShardingKey superShardingKey,
int timeout) throws SQLException {
SQLServerException.throwFeatureNotSupportedException();
return false;
}
}