mirror of
https://github.com/knex/knex.git
synced 2025-07-03 07:04:07 +00:00
45 lines
1.0 KiB
JavaScript
45 lines
1.0 KiB
JavaScript
// Raw
|
|
// -------
|
|
var _ = require('lodash');
|
|
var inherits = require('inherits');
|
|
var EventEmitter = require('events').EventEmitter;
|
|
|
|
function Raw(sql, bindings) {
|
|
if (sql && sql.toSQL) {
|
|
var output = sql.toSQL();
|
|
sql = output.sql;
|
|
bindings = output.bindings;
|
|
}
|
|
this.sql = sql;
|
|
this.bindings = _.isArray(bindings) ? bindings :
|
|
bindings ? [bindings] : [];
|
|
this._debug = void 0;
|
|
this._transacting = void 0;
|
|
}
|
|
inherits(Raw, EventEmitter);
|
|
|
|
// Wraps the current sql with `before` and `after`.
|
|
Raw.prototype.wrap = function(before, after) {
|
|
this.sql = before + this.sql + after;
|
|
return this;
|
|
};
|
|
|
|
// Calls `toString` on the Knex object.
|
|
Raw.prototype.toString = function() {
|
|
return this.toQuery();
|
|
};
|
|
|
|
// Returns the raw sql for the query.
|
|
Raw.prototype.toSQL = function() {
|
|
return {
|
|
sql: this.sql,
|
|
method: 'raw',
|
|
bindings: this.bindings
|
|
};
|
|
};
|
|
|
|
// Allow the `Raw` object to be utilized with full access to the relevant
|
|
// promise API.
|
|
require('./interface')(Raw);
|
|
|
|
module.exports = Raw; |