FireDAC.Comp.Client.TFDLocalSQLDataSet.Name

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Name: String read FName write SetName;

C++

__property System::UnicodeString Name = {read=FName, write=SetName};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Comp.Client.pas
FireDAC.Comp.Client.hpp
FireDAC.Comp.Client TFDLocalSQLDataSet

Description

Specifies an alternative dataset name.

Use the Name property to specify an alternative name for the registered dataset. When the Name property is not specified, then DataSet.Name is used. This means that the property value is optional.   When a dataset is created at run time, DataSet.Name or Name properties must be specified. When one dataset is registered twice or more, then Name property must be specified to make the dataset name unique. 

The property value does not have limitations, like DataSet.Name. If the value is a valid SQLite DB identifier, then it may be referenced in Local SQL as it is. Otherwise, the name must be quoted.

See Also