Blog Post

SQL Server Blog
1 MIN READ

Hotfix: JDBC Driver 12.10.1 for SQL Server Released

DavidEngelMS's avatar
DavidEngelMS
Icon for Microsoft rankMicrosoft
Jun 26, 2025

We recently released an update to Microsoft JDBC Driver for SQL Server, version 12.10.1. The update addresses a few issues on top of the 12.10.0 release.

 

Fixed issues

 

  • Updated OSGi packaging to make com.ibm.security.auth.module and com.sun.security.auth.module optional imports, preventing deployment failures
  • Invalidate enclave session during connection (re)connect to avoid caching an invalid session in the event of a failover
  • Fixed an error on load when the application's installation directory contained a space (readFromFile() fix)
  • Increased the max number of redirections per connection to 10
  • Fixed edge case where subsequent PreparedStatement inserts may fail when using Always Encrypted
  • Fixed idle connection resiliency when connecting via a redirected connection and using Entra authentication

 

Getting the latest release

The latest bits are available to download from Microsoft, from the GitHub repository, and via Maven Central.

Add the JDBC 12.10.1 RTW driver to your Maven project by adding the following code to your POM file to include it as a dependency in your project (choose .jre8 for Java 8/1.8 or .jre11 for Java 11 and up).

 

<dependency> 
  <groupid>com.microsoft.sqlserver</groupid> 
  <artifactid>mssql-jdbc</artifactid> 
  <version>12.10.1.jre11</version> 
</dependency> 

 

Help us improve the JDBC Driver by filing issues on GitHub or contributing to the project.


David Engel
Published Jun 26, 2025
Version 1.0
No CommentsBe the first to comment