hedera-web/js/sql/insert.js

20 lines
341 B
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
2022-06-06 08:53:59 +00:00
var Dml = require('./dml');
2016-09-26 09:28:47 +00:00
/**
* The equivalent of a SQL insert.
2022-05-26 06:08:31 +00:00
*/
2022-06-06 08:53:59 +00:00
module.exports = new Class({
2016-09-26 09:28:47 +00:00
Extends: Dml
2022-06-06 08:53:59 +00:00
,render: function(params) {
2022-05-30 01:30:33 +00:00
return 'INSERT INTO'
2022-06-06 08:53:59 +00:00
+ this.renderTarget(params)
2022-05-30 01:30:33 +00:00
+ ' ('
2022-06-06 08:53:59 +00:00
+ this.renderListWs(this.field, params, ', ')
2022-05-30 01:30:33 +00:00
+ ') VALUES ('
2022-06-06 08:53:59 +00:00
+ this.renderListWs(this.expr, params, ', ')
2022-05-30 01:30:33 +00:00
+ ')';
}
})