Data Port Sync 1.0.500

SqlCeDataReaderMode Enumeration

[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.

[Visual Basic]
Public Enum SqlCeDataReaderMode
[C#]
public enum SqlCeDataReaderMode

Members

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.

Requirements

Namespace: Primeworks.DesktopSqlCe

Assembly: Primeworks.DesktopSqlCe (in Primeworks.DesktopSqlCe.dll)

See Also

Primeworks.DesktopSqlCe Namespace