MySqlBulkCopy.WriteToServer method (1 of 3)
Copies all rows in the supplied DataTable to the destination table specified by the DestinationTableName
property of the MySqlBulkCopy
object.
public MySqlBulkCopyResult WriteToServer(DataTable dataTable)
parameter | description |
---|---|
dataTable | The DataTable to copy. |
Return Value
A MySqlBulkCopyResult
with the result of the bulk copy operation.
See Also
- class MySqlBulkCopyResult
- class MySqlBulkCopy
- namespace MySqlConnector
- assembly MySqlConnector
MySqlBulkCopy.WriteToServer method (2 of 3)
Copies all rows in the supplied IDataReader to the destination table specified by the DestinationTableName
property of the MySqlBulkCopy
object.
public MySqlBulkCopyResult WriteToServer(IDataReader dataReader)
parameter | description |
---|---|
dataReader | The IDataReader to copy from. |
Return Value
A MySqlBulkCopyResult
with the result of the bulk copy operation.
See Also
- class MySqlBulkCopyResult
- class MySqlBulkCopy
- namespace MySqlConnector
- assembly MySqlConnector
MySqlBulkCopy.WriteToServer method (3 of 3)
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 MySqlBulkCopyResult WriteToServer(IEnumerable<DataRow> dataRows, int columnCount)
parameter | description |
---|---|
dataRows | The collection of DataRow objects. |
columnCount | The number of columns to copy (in each row). |
Return Value
A MySqlBulkCopyResult
with the result of the bulk copy operation.
See Also
- class MySqlBulkCopyResult
- class MySqlBulkCopy
- namespace MySqlConnector
- assembly MySqlConnector