LinkMenuExpand(external link)DocumentSearchCopyCopied

MySqlBulkCopy.WriteToServerAsync method (1 of 3)

Asynchronously copies all rows in the supplied DataTable to the destination table specified by the DestinationTableName property of the MySqlBulkCopy object.

public ValueTask<MySqlBulkCopyResult> WriteToServerAsync(DataTable dataTable, 
    CancellationToken cancellationToken = default)
parameterdescription
dataTableThe DataTable to copy.
cancellationTokenA token to cancel the asynchronous operation.

Return Value

A MySqlBulkCopyResult with the result of the bulk copy operation.

See Also


MySqlBulkCopy.WriteToServerAsync method (2 of 3)

Asynchronously copies all rows in the supplied IDataReader to the destination table specified by the DestinationTableName property of the MySqlBulkCopy object.

public ValueTask<MySqlBulkCopyResult> WriteToServerAsync(IDataReader dataReader, 
    CancellationToken cancellationToken = default)
parameterdescription
dataReaderThe IDataReader to copy from.
cancellationTokenA token to cancel the asynchronous operation.

Return Value

A MySqlBulkCopyResult with the result of the bulk copy operation.

See Also


MySqlBulkCopy.WriteToServerAsync method (3 of 3)

Asynchronously copies all rows in the supplied sequence of DataRow objects to the destination table specified by the DestinationTableName property of the MySqlBulkCopy object. The number of columns to be read from the DataRow objects must be specified in advance.

public ValueTask<MySqlBulkCopyResult> WriteToServerAsync(IEnumerable<DataRow> dataRows, 
    int columnCount, CancellationToken cancellationToken = default)
parameterdescription
dataRowsThe collection of DataRow objects.
columnCountThe number of columns to copy (in each row).
cancellationTokenA token to cancel the asynchronous operation.

Return Value

A MySqlBulkCopyResult with the result of the bulk copy operation.

See Also