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