hedera-web/js/sql/delete.js

23 lines
346 B
JavaScript
Raw Normal View History

2016-09-26 09:28:47 +00:00
2022-05-26 06:08:31 +00:00
var Stmt = require('./stmt');
2016-09-26 09:28:47 +00:00
/**
* The equivalent of a SQL delete.
2022-05-26 06:08:31 +00:00
*/
2016-09-26 09:28:47 +00:00
module.exports = new Class
({
2016-09-26 09:28:47 +00:00
Extends: Stmt
2022-05-26 06:08:31 +00:00
,render: function(batch) {
var sql = 'DELETE FROM ' + this.renderTarget(batch);
if (this.where)
2022-05-26 06:08:31 +00:00
sql += ' WHERE ' + this.where.render(batch);
sql += ' LIMIT 1'; // Only for security.
return sql;
}
});