Portfolio/Websites/Jefes/Backend/node_modules/mariadb/lib/command-parameter.js

13 lines
225 B
JavaScript

'use strict';
class CommandParameter {
constructor(sql, values, opts, callback) {
this.sql = sql;
this.values = values;
this.opts = opts;
this.callback = callback;
}
}
module.exports = CommandParameter;