forked from microsoft/mssql-jdbc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSQLServerJdbc42.java
39 lines (31 loc) · 1.19 KB
/
SQLServerJdbc42.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* 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.BatchUpdateException;
/**
* Shims for JDBC 4.2 JAR.
*
* JDBC 4.2 public methods should always check the SQLServerJdbcVersion first to make sure that they are not operable in any earlier driver version.
* That is, they should throw an exception, be a no-op, or whatever.
*/
final class DriverJDBCVersion {
// The 4.2 driver is compliant to JDBC 4.2.
static final int major = 4;
static final int minor = 2;
static final void checkSupportsJDBC4() {
}
static final void checkSupportsJDBC41() {
}
static final void checkSupportsJDBC42() {
}
static final void throwBatchUpdateException(SQLServerException lastError,
long[] updateCounts) throws BatchUpdateException {
throw new BatchUpdateException(lastError.getMessage(), lastError.getSQLState(), lastError.getErrorCode(), updateCounts,
new Throwable(lastError.getMessage()));
}
}