TrackingOptions Enumeration
Specifies which operations on a table are tracked.
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 TrackingOptions
'Usage
Dim instance As TrackingOptions
[FlagsAttribute]
public enum TrackingOptions
[FlagsAttribute]
public enum class TrackingOptions
[<FlagsAttribute>]
type TrackingOptions
public enum TrackingOptions
Members
Member name | Description | |
---|---|---|
None | This value is reserved for use by the tracking infrastructure. Do not use it in your code. | |
Insert | Track only inserts. | |
Update | Track only updates. | |
Delete | Track only deletes. | |
All | Track all operations. | |
Max | This value is reserved for use by the tracking infrastructure. Do not use it in your code. |
Remarks
Values may be combined in a bitwise-or to specify the database operations that will be tracked on a table. For example, you can choose to track only inserts and updates, and not track deletes.