Represents an SQL JOIN clause with ON conditions. Created by patio.Dataset join methods. See patio.sql.JoinClause for other argument parameters.

Extends Instance Properties
PropertyTypeDefault ValueDescription
on

READ ONLY the filter to use with joining the datasets.

Constructor

Defined sql.js Source
function (on,joinType,table,tableAlias){
   this.__on = on;
   this._super(arguments, [joinType, table, tableAlias]);
           
}
            

toString Function Public


Defined sql.js

Converts the patio.sql.JoinOnClause to a string.

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

Documentation generated using coddoc.