NCNU-Scholarship/node_modules/mariadb/lib/command-parameter.js
2024-05-29 19:03:32 +08:00

14 lines
322 B
JavaScript

// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (c) 2015-2024 MariaDB Corporation Ab
'use strict';
class CommandParameter {
constructor(sql, values, opts, callback) {
this.sql = sql;
this.values = values;
this.opts = opts;
this.callback = callback;
}
}
module.exports = CommandParameter;