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.

OracleCommand::Transaction Property

 

Gets or sets the OracleTransaction within which the OracleCommand executes.

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

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

Property Value

Type: System.Data.OracleClient::OracleTransaction^

An OracleTransaction. 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 OracleTransaction object that is not connected to the same OracleConnection as the OracleCommand object, an exception will be thrown the next time you attempt to execute a statement.

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