FireDAC.Comp.Client.TFDCustomConnection.GetFieldNames

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure GetFieldNames(const ACatalogName, ASchemaName, ATableName, APattern: string;  AList: TStrings);

C++

void __fastcall GetFieldNames(const System::UnicodeString ACatalogName, const System::UnicodeString ASchemaName, const System::UnicodeString ATableName, const System::UnicodeString APattern, System::Classes::TStrings* AList);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client TFDCustomConnection

Description

Populates a string list with the names of fields in a table.

Call GetFieldNames to retrieve a list of fields in a table.  ACatalogName, ASchemaName, ATableName name the table whose field names you want added to the list. 

APattern is the LIKE-pattern filtering field names. 

AList is a TStrings descendant that receives the field names. Any existing strings are deleted from the list before GetFieldNames adds the names of all the fields in ATableName

The field names are normalized – enclosed in quotation marks, if that is required – otherwise converted to default dictionary case.

See Also

Samples