UpdateAsync Method (DataRow[], DataTableMapping)

MySQL Connector.Net

Collapse image Expand Image Copy image CopyHover image
Async version of Update

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.8.4.0

Syntax

C#
public Task<int> UpdateAsync(
	DataRow[] dataRows,
	DataTableMapping tableMapping
)
Visual Basic
Public Function UpdateAsync ( _
	dataRows As DataRow(), _
	tableMapping As DataTableMapping _
) As Task(Of Integer)
Visual C++
public:
Task<int>^ UpdateAsync(
	array<DataRow^>^ dataRows, 
	DataTableMapping^ tableMapping
)

Parameters

dataRows
Type: array<System.Data..::..DataRow>[]()[][]
DataRow[] to use
tableMapping
Type: System.Data.Common..::..DataTableMapping
Data Table Mapping

Return Value

int

See Also