FillAsync Method (DataTable[], Int32, Int32, IDbCommand, CommandBehavior)

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(
	DataTable[] dataTables,
	int startRecord,
	int maxRecords,
	IDbCommand command,
	CommandBehavior behavior
)
Visual Basic
Public Function FillAsync ( _
	dataTables As DataTable(), _
	startRecord As Integer, _
	maxRecords As Integer, _
	command As IDbCommand, _
	behavior As CommandBehavior _
) As Task(Of Integer)
Visual C++
public:
Task<int>^ FillAsync(
	array<DataTable^>^ dataTables, 
	int startRecord, 
	int maxRecords, 
	IDbCommand^ command, 
	CommandBehavior behavior
)

Parameters

dataTables
Type: array<System.Data..::..DataTable>[]()[][]
DataTable[] to use
startRecord
Type: System..::..Int32
Start record
maxRecords
Type: System..::..Int32
Max records
command
Type: System.Data..::..IDbCommand
DbCommand to use
behavior
Type: System.Data..::..CommandBehavior
Command Behavior

Return Value

See Also