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.

SqlCommand::Transaction Property

 

Gets or sets the SqlTransaction within which the SqlCommand executes.

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

public:
[BrowsableAttribute(false)]
property SqlTransaction^ Transaction {
	SqlTransaction^ get();
	void set(SqlTransaction^ value);
}

Property Value

Type: System.Data.SqlClient::SqlTransaction^

The SqlTransaction. The default value is null.

You cannot set the Transaction property if it is already set to a specific value, and the command is in the process of executing. If you set the transaction property to a SqlTransaction object that is not connected to the same SqlConnection as the SqlCommand object, an exception is thrown the next time that you attempt to execute a statement.

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