FireDAC.Comp.Script.TFDScriptOptions.ColumnHeadings

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: property
Visibility: published
Source:
FireDAC.Comp.Script.pas
FireDAC.Comp.Script.hpp
Unit: FireDAC.Comp.Script
Parent: TFDScriptOptions

Delphi

property ColumnHeadings: Boolean read FColumnHeadings write FColumnHeadings default True;

C++

__property bool ColumnHeadings = {read=FColumnHeadings, write=FColumnHeadings, default=1};

Description

Controls the output of the result set from the column headers.

Set the ColumnHeadings property to False to suppress the output of the result set column headings at the beginning of the result set and at the beginning of each next page with the result set rows. The default value is True. The headings are output before each number of rows indicated by PageSize

The property can be set from a script using the SET HEADING ON|OFF command.

See Also