TSQLWhereField.Create Constructor
Overloads
TSQLWhereField.Create(TSQLTable, string)
Creates a TSQLWhereField with no operator set.
Syntax
Unit: Aurelius.Sql.BaseTypes
constructor TSQLWhereField.Create(Table: TSQLTable; const Field: string);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| Table | TSQLTable | The table descriptor that owns this column. | |
| const | Field | string | The column name to filter on. |
See also
TSQLWhereField.Create(TSQLTable, string, TWhereOperator)
Creates a TSQLWhereField with the specified comparison operator.
Syntax
Unit: Aurelius.Sql.BaseTypes
constructor TSQLWhereField.Create(Table: TSQLTable; const Field: string; WhereOperator: TWhereOperator);
Parameters
| <-> | Parameter | Type | Description |
|---|---|---|---|
| Table | TSQLTable | The table descriptor that owns this column. | |
| const | Field | string | The column name to filter on. |
| WhereOperator | TWhereOperator | The comparison operator to apply in the WHERE clause. |