Skip to content

Latest commit

 

History

History
39 lines (35 loc) · 1.56 KB

filtergroupenum.md

File metadata and controls

39 lines (35 loc) · 1.56 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords apitype
FilterGroupEnum
FilterGroupEnum
rothja
jroth
01/19/2017
sql
ado
reference
FilterGroupEnum
FilterGroupEnum enumeration [ADO]
COM

FilterGroupEnum

Specifies the group of records to be filtered from a Recordset.

Constant Value Description
adFilterAffectedRecords 2 Filters for viewing only records affected by the last Delete, Resync, UpdateBatch, or CancelBatch call.
adFilterConflictingRecords 5 Filters for viewing the records that failed the last batch update.
adFilterFetchedRecords 3 Filters for viewing the records in the current cache-that is, the results of the last call to retrieve records from the database.
adFilterNone 0 Removes the current filter and restores all records for viewing.
adFilterPendingRecords 1 Filters for viewing only records that have changed but have not yet been sent to the server. Applicable only for batch update mode.

ADO/WFC Equivalent

Package: com.ms.wfc.data

Constant
AdoEnums.FilterGroup.AFFECTEDRECORDS
AdoEnums.FilterGroup.CONFLICTINGRECORDS
AdoEnums.FilterGroup.FETCHEDRECORDS
AdoEnums.FilterGroup.NONE
AdoEnums.FilterGroup.PENDINGRECORDS

Applies To

Filter Property