Data.DB.TGetMode
| [–] Properties | |
|---|---|
| Type: enum | |
| Visibility: public | |
| Source: Data.DB.pas Data.DB.hpp
| |
| Unit: Data.DB | |
| Parent: Data.DB | |
Delphi
TGetMode = (gmCurrent, gmNext, gmPrior);
C++
enum DECLSPEC_DENUM TGetMode : unsigned char { gmCurrent, gmNext, gmPrior };
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. |