hedera-web/js/sql/stmt.js

48 lines
641 B
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
var Object = require ('./object');
var Expr = require ('./expr');
/**
* The equivalent of a SQL statement.
2016-12-20 09:32:17 +00:00
*/
2016-09-26 09:28:47 +00:00
module.exports = new Class
({
2016-09-26 09:28:47 +00:00
Extends: Object
,Properties:
{
where:
{
2016-09-26 09:28:47 +00:00
type: Expr
,value: null
2017-11-13 16:36:30 +00:00
},
limit:
{
type: Number
,value: null
}
}
,target: []
,addTarget: function (target)
{
this.target.push (target);
}
2017-11-13 16:36:30 +00:00
,renderTarget: function (params)
{
2017-11-13 16:36:30 +00:00
if (this.target.length > 0)
return this.renderListWs (this.target, params, ', ');
else
2017-11-13 16:36:30 +00:00
return 'DUAL';
}
,renderLimit: function ()
{
if (this.limit != null)
return 'LIMIT '+ parseInt (this.limit);
else
return '';
}
});