IDbDataAdapter::SelectCommand Property
.NET Framework (current version)
Gets or sets an SQL statement used to select records in the data source.
Assembly: System.Data (in System.Data.dll)
Property Value
Type: System.Data::IDbCommand^An IDbCommand that is used during Update to select records from data source for placement in the data set.
When SelectCommand is assigned to a previously created IDbCommand, the IDbCommand is not cloned. The SelectCommand maintains a reference to the previously created IDbCommand object.
If the SelectCommand does not return any rows, no tables are added to the DataSet, and no exception is raised.
The following example creates an instance of the inherited OleDbDataAdapter class, and sets the SelectCommand and InsertCommand properties. It assumes you have already created an OleDbConnection object.
.NET Framework
Available since 1.1
Available since 1.1
Show: