Skip to content

Latest commit

 

History

History
43 lines (39 loc) · 1.69 KB

File metadata and controls

43 lines (39 loc) · 1.69 KB
description FilterGroupEnum
title FilterGroupEnum | Microsoft Docs
ms.prod sql
ms.prod_service connectivity
ms.technology ado
ms.custom
ms.date 01/19/2017
ms.reviewer
ms.topic reference
apitype COM
f1_keywords
FilterGroupEnum
helpviewer_keywords
FilterGroupEnum enumeration [ADO]
ms.assetid b22e725e-84bd-4286-a070-290c278c3783
author rothja
ms.author jroth

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