FillAsync Method (Int32, Int32, DataTable[])

MySQL Connector.Net

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

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

Syntax

C#
public Task<int> FillAsync(
	int startRecord,
	int maxRecords,
	params DataTable[] dataTables
)
Visual Basic
Public Function FillAsync ( _
	startRecord As Integer, _
	maxRecords As Integer, _
	ParamArray dataTables As DataTable() _
) As Task(Of Integer)
Visual C++
public:
Task<int>^ FillAsync(
	int startRecord, 
	int maxRecords, 
	... array<DataTable^>^ dataTables
)

Parameters

startRecord
Type: System..::..Int32
Start record
maxRecords
Type: System..::..Int32
Max records
dataTables
Type: array<System.Data..::..DataTable>[]()[][]
DataTable[] to use

Return Value

int

See Also