2016-09-26 09:28:47 +00:00
|
|
|
|
2022-05-28 19:27:36 +00:00
|
|
|
var Stmt = require('./stmt');
|
|
|
|
var Value = require('./value');
|
|
|
|
var Field = require('./field');
|
2016-09-26 09:28:47 +00:00
|
|
|
|
2015-01-23 13:09:30 +00:00
|
|
|
/**
|
|
|
|
* The equivalent of a SQL DML.
|
2022-05-26 06:08:31 +00:00
|
|
|
*/
|
2022-05-28 19:27:36 +00:00
|
|
|
module.exports = new Class({
|
2016-09-26 09:28:47 +00:00
|
|
|
Extends: Stmt
|
2015-01-23 13:09:30 +00:00
|
|
|
|
|
|
|
,field: []
|
|
|
|
,expr: []
|
|
|
|
|
2022-05-28 19:27:36 +00:00
|
|
|
,addSet: function(fieldName, value) {
|
|
|
|
this.field.push(new Field({name: fieldName}));
|
2022-05-30 01:30:33 +00:00
|
|
|
this.expr.push(new Value({value: value}));
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
|
2022-05-28 19:27:36 +00:00
|
|
|
,addExpr: function(fieldName, expr) {
|
|
|
|
this.field.push(new Field({name: fieldName}));
|
2022-05-30 01:30:33 +00:00
|
|
|
this.expr.push(expr);
|
2015-03-19 19:36:11 +00:00
|
|
|
}
|
|
|
|
|
2022-05-28 19:27:36 +00:00
|
|
|
,delSet: function() {
|
|
|
|
this.field.splice(0, this.field.length);
|
|
|
|
this.expr.splice(0, this.expr.length);
|
2015-01-23 13:09:30 +00:00
|
|
|
}
|
|
|
|
});
|