Represents an SQL function call.

Extends Instance Properties
PropertyTypeDefault ValueDescription
argsArray

READ ONLY args arguments will be literalized through patio.Dataset#literal and placed into the SQL function call.

fString

READ ONLY the SQL function to call.

Constructor

Defined sql.js Source
  1. function (f){
  2. var args = argsToArray(arguments).slice(1);
  3. this.__f = isInstanceOf(f, Identifier) ? f.value : f, this.__args = args.map(function (a) {
  4. return isString(a) ? sql.stringToIdentifier(a) : a;
  5. });
  6. }

toString Function Public


Defined sql.js

Converts the patio.sql.SQLFunction to a string.

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

Documentation generated using coddoc.