This mixin provides string concatenation methods ("concat");

Example
sql.x.sqlString.concat("y"); //=> "x" || "y"
            

Constructor

Defined sql.js Source
define({
            

concat Function Public


Defined sql.js

Return a patio.sql.StringExpression representing the concatenation of this expression with the given argument.

Example
sql.x.sqlString.concat("y"); //=> "x" || "y"
        
Arguments Source
function (expression){
   return new StringExpression("||", this, expression);
           
}
    

sqlSubscript Function Public


Defined sql.js

Return a patio.sql.Subscript with the given arguments, representing an SQL array access.

Example
sql.array.sqlSubscript(1) //=> array[1]
sql.array.sqlSubscript(1, 2) //=> array[1, 2]
sql.array.sqlSubscript([1, 2]) //=> array[1, 2]
        
Arguments Source
function (subscript){
   var args = argsToArray(arguments);
   return new SubScript(this, flatten(args));
           
}
    

Documentation generated using coddoc.