knex/lib/dialects/sqlite3/formatter.js

36 lines
903 B
JavaScript
Raw Normal View History

// Formatter
// ---------------
module.exports = function(client) {
var Formatter = require('../../formatter');
// The "formatter" is used to ensure all output is properly
// escaped & parameterized.
function Formatter_SQLite3() {
this.client = client;
Formatter.apply(this, arguments);
}
inherits(Formatter_SQLite3, Formatter);
// Wraps a value (column, tableName) with the correct ticks.
Formatter_SQLite3.prototype.wrapValue = function(value) {
return (value !== '*' ? '"' + value + '"' : '*');
};
// Memoize the calls to "wrap" for a little extra perf.
var wrapperMemo = (function(){
var memo = Object.create(null);
return function(key) {
if (memo.key === void 0) {
memo[key] = this._wrapString(key);
}
return memo[key];
};
}());
Formatter_SQLite3.prototype._wrap = wrapperMemo;
// Assign the formatter to the the client.
client.Formatter = Formatter_SQLite3;
};