[This is preliminary documentation and subject to change.]
Defines how a SqlCeDataReader reads data. In Row mode, data is read one row at a time using MoveFirst and MoveNext. In Bulk mode, data is read using GetAllRows and GetNextRow. Both modes are incompatible.
| Member Name | Description |
|---|---|
| Row | Data is read one row at a time and the process may be stopped at any time. It's slower than Bulk. |
| Bulk | All data is read and buffered. The reading process cannot be stopped until Read returns false. Faster than Row. |
Namespace: Primeworks.DesktopSqlCe
Assembly: Primeworks.DesktopSqlCe (in Primeworks.DesktopSqlCe.dll)
Primeworks.DesktopSqlCe Namespace