forked from verdnatura/hedera-web
23 lines
378 B
JavaScript
23 lines
378 B
JavaScript
|
/**
|
||
|
* The equivalent of a SQL DML.
|
||
|
**/
|
||
|
Sql.Dml = new Class
|
||
|
({
|
||
|
Extends: Sql.Stmt
|
||
|
|
||
|
,field: []
|
||
|
,expr: []
|
||
|
|
||
|
,addSet: function (fieldName, value)
|
||
|
{
|
||
|
this.expr.push (new Sql.Value ({value: value}));
|
||
|
this.field.push (new Sql.Field ({name: fieldName}));
|
||
|
}
|
||
|
|
||
|
,delSet: function ()
|
||
|
{
|
||
|
this.field.splice (0, this.field.length);
|
||
|
this.expr.splice (0, this.expr.length);
|
||
|
}
|
||
|
});
|