index.js
8.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
'use strict';
exports.__esModule = true;
var _values2 = require('lodash/values');
var _values3 = _interopRequireDefault(_values2);
var _flatten2 = require('lodash/flatten');
var _flatten3 = _interopRequireDefault(_flatten2);
var _map2 = require('lodash/map');
var _map3 = _interopRequireDefault(_map2);
var _assign2 = require('lodash/assign');
var _assign3 = _interopRequireDefault(_assign2);
exports.default = Client_Oracle;
var _inherits = require('inherits');
var _inherits2 = _interopRequireDefault(_inherits);
var _client = require('../../client');
var _client2 = _interopRequireDefault(_client);
var _bluebird = require('bluebird');
var _bluebird2 = _interopRequireDefault(_bluebird);
var _helpers = require('../../helpers');
var helpers = _interopRequireWildcard(_helpers);
var _string = require('../../query/string');
var _formatter = require('./formatter');
var _formatter2 = _interopRequireDefault(_formatter);
var _transaction = require('./transaction');
var _transaction2 = _interopRequireDefault(_transaction);
var _compiler = require('./query/compiler');
var _compiler2 = _interopRequireDefault(_compiler);
var _compiler3 = require('./schema/compiler');
var _compiler4 = _interopRequireDefault(_compiler3);
var _columnbuilder = require('./schema/columnbuilder');
var _columnbuilder2 = _interopRequireDefault(_columnbuilder);
var _columncompiler = require('./schema/columncompiler');
var _columncompiler2 = _interopRequireDefault(_columncompiler);
var _tablecompiler = require('./schema/tablecompiler');
var _tablecompiler2 = _interopRequireDefault(_tablecompiler);
var _utils = require('./utils');
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
// Always initialize with the "QueryBuilder" and "QueryCompiler"
// objects, which extend the base 'lib/query/builder' and
// 'lib/query/compiler', respectively.
function Client_Oracle(config) {
_client2.default.call(this, config);
}
// Oracle Client
// -------
(0, _inherits2.default)(Client_Oracle, _client2.default);
(0, _assign3.default)(Client_Oracle.prototype, {
dialect: 'oracle',
driverName: 'oracle',
_driver: function _driver() {
return require('oracle');
},
transaction: function transaction() {
return new (Function.prototype.bind.apply(_transaction2.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
formatter: function formatter() {
return new _formatter2.default(this);
},
queryCompiler: function queryCompiler() {
return new (Function.prototype.bind.apply(_compiler2.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
schemaCompiler: function schemaCompiler() {
return new (Function.prototype.bind.apply(_compiler4.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
columnBuilder: function columnBuilder() {
return new (Function.prototype.bind.apply(_columnbuilder2.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
columnCompiler: function columnCompiler() {
return new (Function.prototype.bind.apply(_columncompiler2.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
tableCompiler: function tableCompiler() {
return new (Function.prototype.bind.apply(_tablecompiler2.default, [null].concat([this], Array.prototype.slice.call(arguments))))();
},
prepBindings: function prepBindings(bindings) {
var _this = this;
return (0, _map3.default)(bindings, function (value) {
// returning helper uses always ROWID as string
if (value instanceof _utils.ReturningHelper && _this.driver) {
return new _this.driver.OutParam(_this.driver.OCCISTRING);
} else if (typeof value === 'boolean') {
return value ? 1 : 0;
} else if (Buffer.isBuffer(value)) {
return (0, _string.bufferToString)(value);
}
return value;
});
},
// Get a raw connection, called by the `pool` whenever a new
// connection needs to be added to the pool.
acquireRawConnection: function acquireRawConnection() {
var _this2 = this;
return new _bluebird2.default(function (resolver, rejecter) {
_this2.driver.connect(_this2.connectionSettings, function (err, connection) {
if (err) return rejecter(err);
_bluebird2.default.promisifyAll(connection);
if (_this2.connectionSettings.prefetchRowCount) {
connection.setPrefetchRowCount(_this2.connectionSettings.prefetchRowCount);
}
resolver(connection);
});
});
},
// Used to explicitly close a connection, called internally by the pool
// when a connection times out or the pool is shutdown.
destroyRawConnection: function destroyRawConnection(connection) {
connection.close();
},
// Return the database for the Oracle client.
database: function database() {
return this.connectionSettings.database;
},
// Position the bindings for the query.
positionBindings: function positionBindings(sql) {
var questionCount = 0;
return sql.replace(/\?/g, function () {
questionCount += 1;
return ':' + questionCount;
});
},
_stream: function _stream(connection, obj, stream, options) {
obj.sql = this.positionBindings(obj.sql);
return new _bluebird2.default(function (resolver, rejecter) {
stream.on('error', function (err) {
if (isConnectionError(err)) {
connection.__knex__disposed = err;
}
rejecter(err);
});
stream.on('end', resolver);
var queryStream = connection.queryStream(obj.sql, obj.bindings, options);
queryStream.pipe(stream);
});
},
// Runs the query on the specified connection, providing the bindings
// and any other necessary prep work.
_query: function _query(connection, obj) {
// convert ? params into positional bindings (:1)
obj.sql = this.positionBindings(obj.sql);
if (!obj.sql) throw new Error('The query is empty');
return connection.executeAsync(obj.sql, obj.bindings).then(function (response) {
if (!obj.returning) return response;
var rowIds = obj.outParams.map(function (v, i) {
return response['returnParam' + (i ? i : '')];
});
return connection.executeAsync(obj.returningSql, rowIds);
}).then(function (response) {
obj.response = response;
obj.rowsAffected = response.updateCount;
return obj;
}).catch(function (err) {
if (isConnectionError(err)) {
connection.__knex__disposed = err;
}
throw err;
});
},
// Process the response as returned from the query.
processResponse: function processResponse(obj, runner) {
var response = obj.response;
var method = obj.method;
if (obj.output) return obj.output.call(runner, response);
switch (method) {
case 'select':
case 'pluck':
case 'first':
response = helpers.skim(response);
if (obj.method === 'pluck') response = (0, _map3.default)(response, obj.pluck);
return obj.method === 'first' ? response[0] : response;
case 'insert':
case 'del':
case 'update':
case 'counter':
if (obj.returning) {
if (obj.returning.length > 1 || obj.returning[0] === '*') {
return response;
}
// return an array with values if only one returning value was specified
return (0, _flatten3.default)((0, _map3.default)(response, _values3.default));
}
return obj.rowsAffected;
default:
return response;
}
}
});
// If the error is any of these, we'll assume we need to
// mark the connection as failed
var connectionErrors = ['ORA-12514', 'NJS-040', 'NJS-024', 'NJS-003', 'NJS-024'];
function isConnectionError(err) {
return connectionErrors.some(function (prefix) {
return err.message.indexOf(prefix) === 0;
});
}
module.exports = exports['default'];