Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

SqlConnection::ClientConnectionId Property

.NET Framework (current version)
 

The connection ID of the most recent connection attempt, regardless of whether the attempt succeeded or failed.

Namespace:   System.Data.SqlClient
Assembly:  System.Data (in System.Data.dll)

public:
property Guid ClientConnectionId {
	Guid get();
}

Property Value

Type: System::Guid

The connection ID of the most recent connection attempt.

ClientConnectionId works regardless of which version of the server you connect to, but extended events logs and entry on connectivity ring buffer errors will not be present in SQL Server 2008 R2 and earlier.

You can locate the connection ID in the extended events log to see if the failure was on the server if the extended event for logging connection ID is enabled. You can also locate the connection ID in the connection ring buffer (Connectivity troubleshooting in SQL Server 2008 with the Connectivity Ring Buffer) for certain connection errors. If the connection ID is not in the connection ring buffer, you can assume a network error.

.NET Framework
Available since 4.5
Return to top
Show:
© 2017 Microsoft