Table of Contents

ISQLGenerator.GetFullTableName Method

Returns the fully qualified table name, combining the table name and optional schema according to the target dialect's quoting and separator rules.

Syntax

Unit: Aurelius.Sql.Interfaces

function ISQLGenerator.GetFullTableName(const ATable: string; const ASchema: string): string; virtual; abstract;

Parameters

<-> Parameter Type Description
const ATable string The unqualified table name.
const ASchema string The schema name, or an empty string if no schema applies.

Returns

The fully qualified table name as it should appear in generated SQL.

See also