You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**What was added**: Native support for SQL Server’s new `VECTOR` data type with APIs for inserts, selects, stored procedures, and bulk copy.
12
+
**Who benefits**: Developers building AI/ML workloads or semantic search applications using vector data in SQL Server.
13
+
**Impact**: Enables native vector storage and access via JDBC, eliminating the performance overhead of managing vector data as strings.
14
+
15
+
16
+
-**New connection options, `quotedIdentifier` and `concatNullYieldsNull`**[#2618](https://github.com/microsoft/mssql-jdbc/pull/2618)
17
+
**What was added**: ) New connection options, `quotedIdentifier` and `concatNullYieldsNull`, to control QUOTED_IDENTIFIER and CONCAT_NULL_YIELDS_NULL session settings for both new and pooled connections.
18
+
**Who benefits**: Developers needing Sybase-default behavior for their applications.
19
+
**Impact**: Reduces Sybase migration effort by allowing control of these session values.
20
+
21
+
22
+
-**Support for temporal and money datatypes when using bulk copy for batch insert operations**[#2670](https://github.com/microsoft/mssql-jdbc/pull/2670)
23
+
**What was added**: Support for batch inserts of `DATETIME`, `DATE`, `MONEY`, etc., when using the `useBulkCopyForBatchInsert` option.
24
+
**Who benefits**: High-volume data insert users.
25
+
**Impact**: Improves performance for previously unsupported types (except in Azure Synapse Analytics (formerly Azure SQL DW).
26
+
27
+
28
+
-**Mockito integration into JDBC driver tests**[#2644](https://github.com/microsoft/mssql-jdbc/pull/2644)
29
+
**What was added**: Mockito added as a test dependency.
30
+
**Who benefits**: Developers and contributors writing unit tests.
31
+
**Impact**: Enables better control and test coverage.
32
+
33
+
34
+
### Changed
35
+
36
+
-**`releaseSavepoint` exception type standardized to `SQLFeatureNotSupported`**[#2583](https://github.com/microsoft/mssql-jdbc/pull/2583)
37
+
**What changed**: SQLServerException replaced with SQLFeatureNotSupportedException to comply with JDBC specification.
38
+
**Who benefits**: Developers expecting JDBC standard exceptions.
39
+
**Impact**: Enables better exception handling in client code.
**What was fixed**: Cleaned up invalid Javadoc syntax.
76
+
**Who benefits**: Developers building the driver.
77
+
**Impact**: Cleaner builds, better docs.
78
+
79
+
80
+
-**OffsetDateTime formatting in SQLServerDataTable**[#2652](https://github.com/microsoft/mssql-jdbc/pull/2652)
81
+
**What was fixed**: The `OffsetDateTime``toString()` method was omitting seconds when seconds are zero, which resulted in the server rejecting those records. Used `DateTimeFormatter` to avoid this invalid format.
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -83,7 +83,7 @@ We're now on the Maven Central Repository. Add the following to your POM file to
83
83
<dependency>
84
84
<groupId>com.microsoft.sqlserver</groupId>
85
85
<artifactId>mssql-jdbc</artifactId>
86
-
<version>12.10.0.jre11</version>
86
+
<version>13.1.0.jre11-preview</version>
87
87
</dependency>
88
88
```
89
89
The driver can be downloaded from [Microsoft](https://aka.ms/downloadmssqljdbc). For driver version 12.1.0 and greater, please use the jre11 version when using Java 11 or greater, and the jre8 version when using Java 8.
@@ -94,7 +94,7 @@ To get the latest version of the driver, add the following to your POM file:
94
94
<dependency>
95
95
<groupId>com.microsoft.sqlserver</groupId>
96
96
<artifactId>mssql-jdbc</artifactId>
97
-
<version>12.10.0.jre11</version>
97
+
<version>13.1.0.jre11-preview</version>
98
98
</dependency>
99
99
```
100
100
@@ -129,7 +129,7 @@ Projects that require either of the two features need to explicitly declare the
129
129
<dependency>
130
130
<groupId>com.microsoft.sqlserver</groupId>
131
131
<artifactId>mssql-jdbc</artifactId>
132
-
<version>12.10.0.jre11</version>
132
+
<version>13.1.0.jre11-preview</version>
133
133
<scope>compile</scope>
134
134
</dependency>
135
135
@@ -147,7 +147,7 @@ Projects that require either of the two features need to explicitly declare the
147
147
<dependency>
148
148
<groupId>com.microsoft.sqlserver</groupId>
149
149
<artifactId>mssql-jdbc</artifactId>
150
-
<version>12.10.0.jre11</version>
150
+
<version>13.1.0.jre11-preview</version>
151
151
<scope>compile</scope>
152
152
</dependency>
153
153
@@ -174,7 +174,7 @@ When setting 'useFmtOnly' property to 'true' for establishing a connection or cr
Copy file name to clipboardExpand all lines: mssql-jdbc_auth_LICENSE
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
MICROSOFT SOFTWARE LICENSE TERMS
2
-
MICROSOFT JDBC DRIVER 12.10.0 FOR SQL SERVER
2
+
MICROSOFT JDBC DRIVER 13.1.0 FOR SQL SERVER
3
3
4
4
These license terms are an agreement between you and Microsoft Corporation (or one of its affiliates). They apply to the software named above and any Microsoft services or software updates (except to the extent such services or updates are accompanied by new or additional terms, in which case those different terms apply prospectively and do not alter your or Microsoft’s rights relating to pre-updated software or services). IF YOU COMPLY WITH THESE LICENSE TERMS, YOU HAVE THE RIGHTS BELOW. BY USING THE SOFTWARE, YOU ACCEPT THESE TERMS.
0 commit comments