Data.DB.TDataSet.FieldDefList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property FieldDefList: TFieldDefList read FFieldDefList;

C++

__property TFieldDefList* FieldDefList = {read=FFieldDefList};

Properties

Type Visibility Source Unit Parent
property public
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

Points to the list of field definitions for the dataset.

FieldDefList points to an internal list of field definitions for the dataset. FieldDefList represents a flattened view of the data, meaning that object fields in the dataset may be represented by several simple field definitions that represent the constituents of the object field. To determine the definitions in a hierarchical view, use FieldDefs instead.

To access fields and field values in a dataset, use the Fields, AggFields, and FieldValues properties, and the FieldByName method.

See Also