FireDAC.Phys.SQLiteVDataSet.TFDLocalSQL.SchemaName

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property SchemaName: string read FSchemaName write SetSchemaName default 0;

C++

__property SchemaName = {default=0};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Phys.SQLiteVDataSet.pas
FireDAC.Phys.SQLiteVDataSet.hpp
FireDAC.Phys.SQLiteVDataSet TFDLocalSQL

Description

Sets the schema name for datasets.

Use the SchemaName property to set a schema name to logically group datasets registered with this engine in a namespace.

The schema names of all TFDLocalSQLs connected to the same connection object and all attached database names in the same connection must be unique. FireDAC does not control the uniqueness.

When SchemaName is specified, you can reference the dataset in a SQL as <dataset> or <schema>.<dataset>. If the specified <schema> does not exist, then an exception is raised.

See Also