Data.DB.TFieldsPositionMode

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: enum
Visibility: public
Source:
Data.DB.pas
Data.DB.hpp
Unit: Data.DB
Parent: Data.DB

Delphi

TFieldsPositionMode = (poLast, poFirst, poFieldNo);

C++

enum DECLSPEC_DENUM TFieldsPositionMode : unsigned char { poLast, poFirst, poFieldNo };


Description

Enumerates the positions of the automatic fields relatively to the existing persistent fields.

Data.DB.TFieldsPositionMode has the following values:

Value Meaning

poLast

Automatic fields are appended after existing persistent fields.

poFirst

Automatic fields are appended before existing persistent fields.

poFieldNo

Existing and new fields are ordered by FieldNo, calculated fields are moved to the end of the field list.

See Also