Data.DB.TFieldDefs.HiddenFields

From RAD Studio API Documentation
Jump to: navigation, search

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

Delphi

property HiddenFields: Boolean read FHiddenFields write SetHiddenFields;

C++

__property bool HiddenFields = {read=FHiddenFields, write=SetHiddenFields, nodefault};

Description

Determines whether to show the extra hidden columns that may be included to ensure unique records.

pProviders sometimes include extra hidden columns in data packets. These extra columns ensure that each record contains enough information to locate the corresponding record in the underlying database tables.

Setting HiddenFields to true and calling TFieldDefs . ::Update allows these columns to be seen. HiddenFields is primarily for internal use.

See Also