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
  1. function (value){
  2. this.__value = value;
  3. }

toString Function Public


Defined sql.js

Converts the patio.sql.Identifier to a string.

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

Documentation generated using coddoc.