2014-09-01 17:18:45 +02:00
|
|
|
'use strict';
|
|
|
|
|
2014-08-11 12:25:39 +02:00
|
|
|
// Oracle Table Builder & Compiler
|
|
|
|
// -------
|
|
|
|
module.exports = function(client) {
|
|
|
|
|
|
|
|
var inherits = require('inherits');
|
|
|
|
var Schema = require('../../../schema');
|
|
|
|
var utils = require('../utils');
|
2014-08-21 00:17:49 +02:00
|
|
|
var helpers = require('../../../helpers');
|
2014-08-11 12:25:39 +02:00
|
|
|
|
|
|
|
// Table Builder
|
|
|
|
// ------
|
|
|
|
|
|
|
|
function TableBuilder_Oracle() {
|
|
|
|
this.client = client;
|
|
|
|
Schema.TableBuilder.apply(this, arguments);
|
|
|
|
}
|
|
|
|
inherits(TableBuilder_Oracle, Schema.TableBuilder);
|
|
|
|
|
|
|
|
// Table Compiler
|
|
|
|
// ------
|
|
|
|
|
|
|
|
function TableCompiler_Oracle() {
|
|
|
|
this.client = client;
|
|
|
|
this.Formatter = client.Formatter;
|
|
|
|
Schema.TableCompiler.apply(this, arguments);
|
|
|
|
}
|
|
|
|
inherits(TableCompiler_Oracle, Schema.TableCompiler);
|
|
|
|
|
|
|
|
// Compile a rename column command.
|
|
|
|
TableCompiler_Oracle.prototype.renameColumn = function(from, to) {
|
|
|
|
return this.pushQuery({
|
|
|
|
sql: 'alter table ' + this.tableName() + ' rename column '+ this.formatter.wrap(from) + ' to ' + this.formatter.wrap(to)
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.compileAdd = function(builder) {
|
|
|
|
var table = this.formatter.wrap(builder);
|
|
|
|
var columns = this.prefixArray('add column', this.getColumns(builder));
|
|
|
|
return this.pushQuery({
|
|
|
|
sql: 'alter table ' + table + ' ' + columns.join(', ')
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
// Adds the "create" query to the query sequence.
|
2014-08-14 15:32:26 -04:00
|
|
|
TableCompiler_Oracle.prototype.createQuery = function(columns, ifNot) {
|
2014-08-16 14:20:44 +02:00
|
|
|
var sql = 'create table ' + this.tableName() + ' (' + columns.sql.join(', ') + ')';
|
2014-08-11 12:25:39 +02:00
|
|
|
this.pushQuery({
|
2014-08-16 14:20:44 +02:00
|
|
|
// catch "name is already used by an existing object" for workaround for "if not exists"
|
|
|
|
sql: ifNot ? utils.wrapSqlWithCatch(sql, -955) : sql,
|
2014-08-11 12:25:39 +02:00
|
|
|
bindings: columns.bindings
|
|
|
|
});
|
|
|
|
if (this.single.comment) this.comment(this.single.comment);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Compiles the comment on the table.
|
|
|
|
TableCompiler_Oracle.prototype.comment = function(comment) {
|
|
|
|
this.pushQuery('comment on table ' + this.tableName() + ' is ' + "'" + (comment || '') + "'");
|
|
|
|
};
|
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.addColumnsPrefix = 'add ';
|
2014-08-21 00:17:49 +02:00
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.dropColumn = function() {
|
|
|
|
var columns = helpers.normalizeArr.apply(null, arguments);
|
|
|
|
this.pushQuery('alter table ' + this.tableName() + ' drop (' + this.formatter.columnize(columns) + ')');
|
|
|
|
};
|
2014-08-11 12:25:39 +02:00
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.changeType = function() {
|
|
|
|
// alter table + table + ' modify ' + wrapped + '// type';
|
|
|
|
};
|
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype._indexCommand = function(type, tableName, columns) {
|
|
|
|
return this.formatter.wrap(utils.generateCombinedName(type, tableName, columns));
|
|
|
|
};
|
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.primary = function(columns) {
|
|
|
|
this.pushQuery('alter table ' + this.tableName() + " add primary key (" + this.formatter.columnize(columns) + ")");
|
|
|
|
};
|
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.dropPrimary = function() {
|
|
|
|
this.pushQuery('alter table ' + this.tableName() + ' drop primary key');
|
|
|
|
};
|
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.index = function(columns, indexName) {
|
|
|
|
indexName = indexName ? this.formatter.wrap(indexName) : this._indexCommand('index', this.tableNameRaw, columns);
|
|
|
|
this.pushQuery('create index ' + indexName + ' on ' + this.tableName() +
|
|
|
|
' (' + this.formatter.columnize(columns) + ')');
|
|
|
|
};
|
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.dropIndex = function(columns, indexName) {
|
|
|
|
indexName = indexName ? this.formatter.wrap(indexName) : this._indexCommand('index', this.tableNameRaw, columns);
|
|
|
|
this.pushQuery('drop index ' + indexName);
|
|
|
|
};
|
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.unique = function(columns, indexName) {
|
|
|
|
indexName = indexName ? this.formatter.wrap(indexName) : this._indexCommand('unique', this.tableNameRaw, columns);
|
|
|
|
this.pushQuery('alter table ' + this.tableName() + ' add constraint ' + indexName +
|
|
|
|
' unique (' + this.formatter.columnize(columns) + ')');
|
|
|
|
};
|
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.dropUnique = function(columns, indexName) {
|
|
|
|
indexName = indexName ? this.formatter.wrap(indexName) : this._indexCommand('unique', this.tableNameRaw, columns);
|
|
|
|
this.pushQuery('alter table ' + this.tableName() + ' drop constraint ' + indexName);
|
|
|
|
};
|
|
|
|
|
|
|
|
TableCompiler_Oracle.prototype.dropForeign = function(columns, indexName) {
|
|
|
|
indexName = indexName ? this.formatter.wrap(indexName) : this._indexCommand('foreign', this.tableNameRaw, columns);
|
|
|
|
this.pushQuery('alter table ' + this.tableName() + ' drop constraint ' + indexName);
|
|
|
|
};
|
|
|
|
|
|
|
|
client.TableBuilder = TableBuilder_Oracle;
|
|
|
|
client.TableCompiler = TableCompiler_Oracle;
|
|
|
|
|
|
|
|
};
|