SqlConnectionStringBuilder.TransactionBinding Property
Gets or sets a string value that indicates how the connection maintains its association with an enlisted System.Transactions transaction.
Assembly: System.Data (in System.Data.dll)
The Transaction Binding keywords in a ConnectionString control how a SqlConnection binds to an enlisted Transaction.
The following table shows the possible values for the TransactionBinding property:
|
Value |
Description |
|---|---|
|
Implicit Unbind |
The default. Causes the connection to detach from the transaction when it ends. After detaching, additional requests on the connection are performed in autocommit mode. The Current property is not checked when executing requests while the transaction is active. After the transaction has ended, additional requests are performed in autocommit mode. |
|
Explicit Unbind |
Causes the connection to remain attached to the transaction until the connection is closed or until EnlistTransaction is called with a null (Nothing in Visual Basic) value. An InvalidOperationException is thrown if Current is not the enlisted transaction or if the enlisted transaction is not active. This behavior enforces the strict scoping rules required for TransactionScope support. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.