mirror of
https://github.com/knex/knex.git
synced 2025-07-03 23:19:26 +00:00

Beefed up transaction implementation, still needs tests and cleanup of nested transaction queues. Left todo: - Fix commented out tests - Fix oracle driver's transactions
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
'use strict';
|
|
|
|
var helpers = require('./helpers')
|
|
|
|
// The "SchemaCompiler" takes all of the query statements which have been
|
|
// gathered in the "SchemaBuilder" and turns them into an array of
|
|
// properly formatted / bound query strings.
|
|
function SchemaCompiler(client, builder) {
|
|
this.builder = builder
|
|
this.client = client
|
|
this.formatter = client.formatter()
|
|
this.sequence = []
|
|
}
|
|
|
|
SchemaCompiler.prototype.pushQuery = helpers.pushQuery
|
|
|
|
SchemaCompiler.prototype.pushAdditional = helpers.pushAdditional
|
|
|
|
function buildTable(type) {
|
|
return function(tableName, fn) {
|
|
var sql = this.client.tableBuilder(type, tableName, fn).toSQL();
|
|
for (var i = 0, l = sql.length; i < l; i++) {
|
|
this.sequence.push(sql[i]);
|
|
}
|
|
};
|
|
}
|
|
|
|
SchemaCompiler.prototype.createTable = buildTable('create')
|
|
SchemaCompiler.prototype.createTableIfNotExists = buildTable('createIfNot');
|
|
SchemaCompiler.prototype.alterTable = buildTable('alter');
|
|
|
|
SchemaCompiler.prototype.dropTable = function(tableName) {
|
|
this.pushQuery('drop table ' + this.formatter.wrap(tableName));
|
|
};
|
|
SchemaCompiler.prototype.dropTableIfExists = function(tableName) {
|
|
this.pushQuery('drop table if exists ' + this.formatter.wrap(tableName));
|
|
};
|
|
SchemaCompiler.prototype.toSQL = function() {
|
|
var sequence = this.builder._sequence;
|
|
for (var i = 0, l = sequence.length; i < l; i++) {
|
|
var query = sequence[i];
|
|
this[query.method].apply(this, query.args);
|
|
}
|
|
return this.sequence;
|
|
};
|
|
SchemaCompiler.prototype.raw = function(sql, bindings) {
|
|
this.sequence.push(this.client.raw(sql, bindings).toSQL());
|
|
};
|
|
|
|
module.exports = SchemaCompiler;
|