DbDataAdapter.IDbDataAdapter.UpdateCommand Property
Definition
Gets or sets an SQL statement used to update records in the data source.
property System::Data::IDbCommand ^ System::Data::IDbDataAdapter::UpdateCommand { System::Data::IDbCommand ^ get(); void set(System::Data::IDbCommand ^ value); };
System.Data.IDbCommand? System.Data.IDbDataAdapter.UpdateCommand { get; set; }
System.Data.IDbCommand System.Data.IDbDataAdapter.UpdateCommand { get; set; }
member this.System.Data.IDbDataAdapter.UpdateCommand : System.Data.IDbCommand with get, set
Property UpdateCommand As IDbCommand Implements IDbDataAdapter.UpdateCommand
Property Value
An IDbCommand used during Update(DataSet) to update records in the data source for modified rows in the data set.
Implements
Remarks
This member is an explicit interface member implementation. It can be used only when the DbDataAdapter instance is cast to an IDbDataAdapter interface.
For more information, see UpdateCommand.