OleDbDataAdapter::DeleteCommand Property
Gets or sets an SQL statement or stored procedure for deleting records from the data set.
Assembly: System.Data (in System.Data.dll)
public: property OleDbCommand^ DeleteCommand { OleDbCommand^ get(); void set(OleDbCommand^ value); }
Property Value
Type: System.Data.OleDb::OleDbCommand^An OleDbCommand used during Update to delete records in the data source that correspond to deleted rows in the DataSet.
During Update, if this property is not set and primary key information is present in the DataSet, the DeleteCommand can be generated automatically if you set the SelectCommand property and use the OleDbCommandBuilder. Then, any additional commands that you do not set are generated by the OleDbCommandBuilder. This generation logic requires key column information to be present in the DataSet. For more information, see Generating Commands with CommandBuilders.
When DeleteCommand is assigned to a previously created OleDbCommand, the OleDbCommand is not cloned. The DeleteCommand maintains a reference to the previously created OleDbCommand object.
The following example creates an OleDbDataAdapter and sets the SelectCommand and DeleteCommand properties. It assumes that you have already created an OleDbConnection object.
Available since 1.1