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.
OleDbCommand::Transaction Property
.NET Framework (current version)
Gets or sets the OleDbTransaction within which the OleDbCommand executes.
Assembly: System.Data (in System.Data.dll)
public: [BrowsableAttribute(false)] property OleDbTransaction^ Transaction { OleDbTransaction^ get(); void set(OleDbTransaction^ value); }
Property Value
Type: System.Data.OleDb::OleDbTransaction^The OleDbTransaction. 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 an OleDbTransaction object that is not connected to the same OleDbConnection as the OleDbCommand object, an exception is thrown the next time that you try to execute a statement.
.NET Framework
Available since 1.1
Available since 1.1
Show: