'Declaration Public Overrides Property UpdateBatchSize As Integer
public override int UpdateBatchSize {get; set;}
Property Value
The number of rows to process per batch.
Value is | Effect |
---|---|
0 | There is no limit on the batch size. |
1 | Disables batch updating. |
more than 1 | Changes are sent using batches of UpdateBatchSize operations at a time. |
When setting this to a value other than 1, all the commands associated with the MySqlDataAdapter should have their Devart.Common.DbCommandBase.UpdatedRowSource property set to None or OutputParameters. An exception is thrown otherwise.