Data.DB.TGetMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGetMode = (gmCurrent, gmNext, gmPrior);

C++

enum DECLSPEC_DENUM TGetMode : unsigned char { gmCurrent, gmNext, gmPrior };

Properties

Type Visibility Source Unit Parent
enum public
Data.DB.pas
Data.DB.hpp
Data.DB Data.DB

Description

TGetMode is a set that is used to specify the record retrieval mode for the GetRecord method.

TGetMode is a set that is used to specify the record retrieval mode for the GetRecord method. The possible values for TGetMode are listed in the following table:

Value Description

gmCurrent

The current record will be retrieved.

gmNext

The record after the current one will be retrieved.

gmPrior

The record prior to the current one will be retrieved.


See Also