OleDbDataAdapter::UpdateCommand Property
Gets or sets an SQL statement or stored procedure used to update records in the data source.
Assembly: System.Data (in System.Data.dll)
public: property OleDbCommand^ UpdateCommand { OleDbCommand^ get(); void set(OleDbCommand^ value); }
Property Value
Type: System.Data.OleDb::OleDbCommand^An OleDbCommand used during Update to update records in the data source that correspond to modified rows in the DataSet.
During Update, if this property is not set and primary key information is present in the DataSet, the UpdateCommand 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 UpdateCommand is assigned to a previously created OleDbCommand, the OleDbCommand is not cloned. The UpdateCommand maintains a reference to the previously created OleDbCommand object.
Note |
|---|
If execution of this command returns rows, these rows may be merged with the DataSet depending on how you set the UpdatedRowSource property of the OleDbCommand object. |
The following example creates an OleDbDataAdapter and sets the SelectCommand and UpdateCommand properties. It assumes that you have already created an OleDbConnection object.
Available since 1.1
