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

MySQL Connector/Net

MySqlDataAdapterFillAsync Method (DataTable, Int32, Int32, IDbCommand, CommandBehavior)
Async version of Fill

Namespace: MySql.Data.MySqlClient
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public Task<int> FillAsync(
	DataTable[] dataTables,
	int startRecord,
	int maxRecords,
	IDbCommand command,
	CommandBehavior behavior
)
Public Function FillAsync ( 
	dataTables As DataTable(),
	startRecord As Integer,
	maxRecords As Integer,
	command As IDbCommand,
	behavior As CommandBehavior
) As Task(Of Integer)
public:
Task<int>^ FillAsync(
	array<DataTable^>^ dataTables, 
	int startRecord, 
	int maxRecords, 
	IDbCommand^ command, 
	CommandBehavior behavior
)
member FillAsync : 
        dataTables : DataTable[] * 
        startRecord : int * 
        maxRecords : int * 
        command : IDbCommand * 
        behavior : CommandBehavior -> Task<int> 

Parameters

dataTables
Type: System.DataDataTable
DataTable[] to use
startRecord
Type: SystemInt32
Start record
maxRecords
Type: SystemInt32
Max records
command
Type: System.DataIDbCommand
DbCommand to use
behavior
Type: System.DataCommandBehavior
Command Behavior

Return Value

Type: TaskInt32
See Also