OleDbDataAdapter::SelectCommand Property
.NET Framework (current version)
Gets or sets an SQL statement or stored procedure used to select records in the data source.
Assembly: System.Data (in System.Data.dll)
public: property OleDbCommand^ SelectCommand { OleDbCommand^ get(); void set(OleDbCommand^ value); }
Property Value
Type: System.Data.OleDb::OleDbCommand^An OleDbCommand that is used during Fill to select records from data source for placement in the DataSet.
When SelectCommand is assigned to a previously created OleDbCommand, the OleDbCommand is not cloned. The SelectCommand maintains a reference to the previously created OleDbCommand object.
If the SelectCommand returns no rows, no tables are added to the DataSet, and no exception is raised.
The following example creates an OleDbDataAdapter and sets the SelectCommand and InsertCommand properties. It assumes that you have already created an OleDbConnection object.
.NET Framework
Available since 1.1
Available since 1.1
Show: