Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets options for the ResultSetEnumerator.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
<FlagsAttribute> _
Public Enumeration ResultSetOptions
'Usage
Dim instance As ResultSetOptions
[FlagsAttribute]
public enum ResultSetOptions
[FlagsAttribute]
public enum class ResultSetOptions
[<FlagsAttribute>]
type ResultSetOptions
public enum ResultSetOptions
Members
Member name | Description | |
---|---|---|
None | No ResultSet options are specified. | |
Updatable | The ResultSet allows updates. | |
Scrollable | The ResultSet can be scrolled both forward and backward. | |
Sensitive | The ResultSet detects changes made to the data source. | |
Insensitive | The ResultSet does not detect changes made to the data source. |
Remarks
If you do not set both the Insensitive and Sensitive settings, the ResultSet is Asensitive and will use the fastest cursor based on the other options specified.