Data.DB.TFieldsPositionMode

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFieldsPositionMode = (poLast, poFirst, poFieldNo);

C++

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

Properties

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


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