OleDbCommand::Connection Property

 

Gets or sets the OleDbConnection used by this instance of the OleDbCommand.

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

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

Property Value

Type: System.Data.OleDb::OleDbConnection^

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

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 the Transaction property is not null and the transaction has already been committed or rolled back, Transaction is set to null.

The following example creates an OleDbCommand and sets some of its properties.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: