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
function (table,column){
   this.__table = table;
   this.__column = column;
           
}
            

toString Function Public


Defined sql.js

Converts the patio.sql.QualifiedIdentifier to a string.

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

Documentation generated using coddoc.