Represents a qualified identifier (column with table or table with schema).
Extends Instance PropertiesProperty | Type | Default Value | Description |
column | READ ONLY he column or table to qualify. | ||
table | READ ONLY the table or schema to qualify the column or table to. | ||
function (table,column){ this.__table = table; this.__column = column; }
Converts the patio.sql.QualifiedIdentifier 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.QualifiedIdentifier.
function (ds){ !Dataset && (Dataset = require("./dataset")); ds = ds || new Dataset(); return ds.qualifiedIdentifierSql(this); }