OdbcCommand.Transaction Property

Definition

Gets or sets the OdbcTransaction within which the OdbcCommand executes.

public:
 property System::Data::Odbc::OdbcTransaction ^ Transaction { System::Data::Odbc::OdbcTransaction ^ get(); void set(System::Data::Odbc::OdbcTransaction ^ value); };
[System.ComponentModel.Browsable(false)]
public System.Data.Odbc.OdbcTransaction Transaction { get; set; }
[System.ComponentModel.Browsable(false)]
public System.Data.Odbc.OdbcTransaction? Transaction { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.Transaction : System.Data.Odbc.OdbcTransaction with get, set
Public Property Transaction As OdbcTransaction

Property Value

An OdbcTransaction. The default is a null value.

Attributes

Remarks

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.

Applies to