DbAdapterIDataAdapterUpdate Method |
Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified
DataSet from a
DataTable named "Table".
Namespace: Innovator.Client.ConnectionAssembly: Innovator.Client (in Innovator.Client.dll) Version: 2016.1.15.1759 (2016.01.15.1759)
Syntax int IDataAdapter.Update(
DataSet dataSet
)
Private Function Update (
dataSet As DataSet
) As Integer Implements IDataAdapter.Update
Parameters
- dataSet
- Type: System.DataDataSet
The DataSet used to update the data source.
Return Value
Type:
Int32The number of rows successfully updated from the
DataSet.
Implements
IDataAdapterUpdate(DataSet)Exceptions Exception | Condition |
---|
DBConcurrencyException | An attempt to execute an INSERT, UPDATE, or DELETE statement resulted in zero records affected. |
See Also