dotConnect for SQLite Documentation
Devart.Data.SQLite Namespace / SQLiteDataAdapter Class / UpdateBatchSize Property

In This Topic
UpdateBatchSize Property (SQLiteDataAdapter)
In This Topic
Gets or sets a value that enables or disables batch processing support, and specifies the number of commands that can be executed in a batch.
Syntax
'Declaration
 
Public Overrides Property UpdateBatchSize As Integer
 

Property Value

The number of rows to process per batch.
Remarks
Value Meaning
0 The SQLiteDataAdapter will use the largest batch size that the server can handle.
1 Batch updating is disabled.
Greater than 1 Changes are sent using batches of UpdateBatchSize operations at a time.
See Also