ResultSetSensitivity Enumeration

Sets the sensitivity of the ResultSetEnumerator.

Namespace:  System.Data.SqlServerCe
Assembly:  System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)

Syntax

'Declaration
Public Enumeration ResultSetSensitivity
'Usage
Dim instance As ResultSetSensitivity
public enum ResultSetSensitivity
public enum class ResultSetSensitivity
type ResultSetSensitivity
public enum ResultSetSensitivity

Members

Member name Description
Asensitive No sensitivity is set for the ResultSet.
Insensitive The ResultSet does not detect changes made to the data source.
Sensitive The ResultSet detects changes made to the data source.

Remarks

The sensitivity of the ResultSet indicates whether the ResultSet is aware of changes to the data source. A ResultSet that is sensitive is aware of changes; an insensitive ResultSet is unaware of changes. An asensitive ResultSet is neither sensitive nor insensitive, and instead uses the optimal configuration based on other ResultSet settings.

The default value is asensitive.

See Also

Reference

System.Data.SqlServerCe Namespace