Blog Post

SQL Server Blog
2 MIN READ

Announcing Microsoft.Data.SqlClient 6.1.5

DavidLevy's avatar
DavidLevy
Icon for Microsoft rankMicrosoft
May 01, 2026

We are pleased to announce the release of Microsoft.Data.SqlClient 6.1.5, the latest servicing update to the 6.1 line. This update focuses on connection performance, error propagation, and vector type metadata correctness.

Install or update from NuGet:

dotnet add package Microsoft.Data.SqlClient --version 6.1.5

Full release notes: 6.1.5 Release Notes

What's in this release

Faster connection opens for non-integrated authentication on native SNI

A regression caused SPN (Service Principal Name) generation to run for non-integrated authentication modes, such as SQL authentication, on the native SNI path. That triggered unnecessary DNS lookups and could significantly slow down connection opens. This fix restores the expected behavior for affected .NET applications on Windows. (#3523#3946)

ExecuteScalar now propagates post-row server errors

ExecuteScalar could previously hide errors when SQL Server returned row data followed by an error token. In those cases, errors such as conversion failures during WHERE clause evaluation were consumed during SqlDataReader.Close() instead of being thrown to the caller, which could leave transactions unexpectedly zombied. This fix ensures the error is surfaced correctly to application code. (#3736#3947)

Correct metadata type for vector float32 columns

SqlDataReader.GetFieldType() and GetProviderSpecificFieldType() now return the correct type, SqlVector<float>, for vector float32 columns. Previously these APIs returned metadata that did not match the type-resolution behavior used by GetValue(). (#4104#4151)

Getting started

If you are new to Microsoft.Data.SqlClient, check out the introduction documentation. For users of System.Data.SqlClient, please move migrate to Microsoft.Data.SqlClient now. See the porting cheat sheet.

If you encounter any issues, please report them on the GitHub repository.

Published May 01, 2026
Version 1.0
No CommentsBe the first to comment