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.

OdbcCommand::Connection Property

 

Gets or sets the OdbcConnection used by this instance of the OdbcCommand.

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

public:
property OdbcConnection^ Connection {
	OdbcConnection^ get();
	void set(OdbcConnection^ value);
}

Property Value

Type: System.Data.Odbc::OdbcConnection^

The connection to a data source. The default is a null value.

Exception Condition
InvalidOperationException

The Connection property was changed while a transaction was in progress.

You cannot set the Connection, CommandType, and CommandText properties if the current connection is performing an execute or fetch operation.

If you set Connection while a transaction is in progress and the Transaction property is not null, an InvalidOperationException is generated. If you set Connection after the transaction has been committed or rolled back, and the Transaction property is not null, the Transaction property is then set to a null value.

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