DbDataAdapter.Update Method
.NET Framework 3.0
Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the DataSet.
| Name | Description |
|---|---|
| DbDataAdapter.Update (DataRow[]) | Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified array of DataRow objects. Supported by the .NET Compact Framework. |
| DbDataAdapter.Update (DataSet) | Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified DataSet. Supported by the .NET Compact Framework. |
| DbDataAdapter.Update (DataTable) | Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified DataTable. Supported by the .NET Compact Framework. |
| DbDataAdapter.Update (DataRow[], DataTableMapping) | Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the specified array of DataRow objects. Supported by the .NET Compact Framework. |
| DbDataAdapter.Update (DataSet, String) | Calls the respective INSERT, UPDATE, or DELETE statements for each inserted, updated, or deleted row in the DataSet with the specified DataTable name. Supported by the .NET Compact Framework. |
Community Additions
ADD
Show: