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 Properties
PropertyTypeDefault ValueDescription
valueString

READ ONLY the column or table this identifier represents.

Constructor

Defined sql.js Source
function (value){
   this.__value = value;
           
}
            

toString Function Public


Defined sql.js

Converts the patio.sql.Identifier to a string.

Arguments Returns Source
function (ds){
   !Dataset && (Dataset = require("./dataset"));
   ds = ds || new Dataset();
   return ds.quoteIdentifier(this);
           
}
    

Documentation generated using coddoc.