Represents an identifier (column or table). Can be used to specify a String with multiple underscores that should not be split, or for creating an implicit identifier without using a String.
Extends Instance PropertiesProperty | Type | Default Value | Description |
value | String | READ ONLY the column or table this identifier represents. | |
- function (value){
- this.__value = value;
- }
Converts the patio.sql.Identifier to a string.
Argumentsdataset used to created the SQL fragment, if the dataset is ommited then the default patio.Dataset implementation is used.
String the SQL version of the patio.sql.Identifier.
- function (ds){
- !Dataset && (Dataset = require("./dataset"));
- ds = ds || new Dataset();
- return ds.quoteIdentifier(this);
- }