Represents a json array that should be placed into a SQL query literally.
Constructor
Defined sql.jsSource
function (arr){
if (!(this instanceof JsonArray)) {
return new JsonArray(arr);
}
Array.call(this);
var i = -1, l = arr.length;
while (++i < l) {
this.push(arr[i]);
}
}