Represents a qualified identifier (column with table or table with schema).

Extends Instance Properties
PropertyTypeDefault ValueDescription
column

READ ONLY he column or table to qualify.

table

READ ONLY the table or schema to qualify the column or table to.

Constructor

Defined sql.js Source
  1. function (table,column){
  2. this.__table = table;
  3. this.__column = column;
  4. }

toString Function Public


Defined sql.js

Converts the patio.sql.QualifiedIdentifier to a string.

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

Documentation generated using coddoc.