TSQLTable.Create Constructor
Overloads
TSQLTable.Create(string, string)
Creates a TSQLTable with the specified name and alias.
Syntax
Unit: Aurelius.Sql.BaseTypes
constructor TSQLTable.Create(const Name: string; const Alias: string);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| const | Name | string | The table or view name. |
| const | Alias | string | The alias used in the generated SQL. |
See also
TSQLTable.Create(string, string, string)
Creates a TSQLTable with the specified name, schema, and alias.
Syntax
Unit: Aurelius.Sql.BaseTypes
constructor TSQLTable.Create(const Name: string; const Schema: string; const Alias: string);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| const | Name | string | The table or view name. |
| const | Schema | string | The database schema that qualifies the table name. |
| const | Alias | string | The alias used in the generated SQL. |