2016-09-26 09:28:47 +00:00
|
|
|
|
2022-05-30 01:30:33 +00:00
|
|
|
var Object = require('./object');
|
|
|
|
var Expr = require('./expr');
|
2016-09-26 09:28:47 +00:00
|
|
|
|
2015-01-23 13:09:30 +00:00
|
|
|
/**
|
|
|
|
* The equivalent of a SQL statement.
|
2022-05-26 06:08:31 +00:00
|
|
|
*/
|
2022-05-30 01:30:33 +00:00
|
|
|
module.exports = new Class({
|
2016-09-26 09:28:47 +00:00
|
|
|
Extends: Object
|
2022-05-30 01:30:33 +00:00
|
|
|
,Properties: {
|
|
|
|
where: {
|
2016-09-26 09:28:47 +00:00
|
|
|
type: Expr
|
2015-01-23 13:09:30 +00:00
|
|
|
,value: null
|
2022-05-30 01:30:33 +00:00
|
|
|
},
|
|
|
|
limit: {
|
|
|
|
type: Number
|
|
|
|
,value: null
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
,target: []
|
|
|
|
|
2022-05-30 01:30:33 +00:00
|
|
|
,addTarget: function(target) {
|
|
|
|
this.target.push(target);
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
|
2022-05-30 01:30:33 +00:00
|
|
|
,renderTarget: function(params) {
|
|
|
|
if (this.target.length > 0)
|
|
|
|
return ' '+ this.renderListWs(this.target, params, ', ');
|
2015-01-23 13:09:30 +00:00
|
|
|
else
|
2022-05-30 01:30:33 +00:00
|
|
|
return ' DUAL';
|
|
|
|
}
|
|
|
|
|
|
|
|
,renderLimit: function() {
|
|
|
|
if (this.limit != null)
|
|
|
|
return ' LIMIT '+ parseInt(this.limit);
|
|
|
|
else
|
|
|
|
return '';
|
|
|
|
}
|
2015-01-23 13:09:30 +00:00
|
|
|
});
|