This is the parent of all expressions.

Constructor

Defined sql.js

fromArgs Static Function Public


Defined sql.js

This is a helper method that will take in an array of arguments and return an expression.

Example
  1. QualifiedIdentifier.fromArgs(["table", "column"]);
Arguments Returns Source
  1. function (args){
  2. var ret, Self = this;
  3. try {
  4. ret = new Self();
  5. } catch (ignore) {
  6. }
  7. this.apply(ret, args);
  8. return ret;
  9. }

isConditionSpecifier Static Function Public


Defined sql.js

Helper to determine if something is a condition specifier. Returns true if the object is a Hash or is an array of two element arrays.

Example
  1. Expression.isConditionSpecifier({a : "b"}); //=> true
  2. Expression.isConditionSpecifier("a"); //=> false
  3. Expression.isConditionSpecifier([["a", "b"], ["c", "d"]]); //=> true
  4. Expression.isConditionSpecifier([["a", "b", "e"], ["c", "d"]]); //=> false
Arguments Returns Source
  1. function (obj){
  2. return isHash(obj) || (isArray(obj) && obj.length && obj.every(function (i) {
  3. return isArray(i) && i.length === 2;
  4. }));
  5. }

sqlLiteral Function Public


Defined sql.js

Returns the string representation of this expression

Arguments Returns Source
  1. function (ds){
  2. return this.toString(ds);
  3. }

Documentation generated using coddoc.