mirror of
https://github.com/knex/knex.git
synced 2025-10-05 21:16:57 +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
18 lines
387 B
JavaScript
18 lines
387 B
JavaScript
'use strict';
|
|
|
|
// Oracle Client
|
|
// -------
|
|
var inherits = require('inherits')
|
|
var Client_Oracle = require('../oracle')
|
|
|
|
function Client_StrongOracle() {
|
|
Client_Oracle.apply(this, arguments);
|
|
}
|
|
inherits(Client_StrongOracle, Client_Oracle);
|
|
|
|
Client_StrongOracle.prototype.driverName = 'strong-oracle'
|
|
|
|
Client_StrongOracle.__proto__ = Client_Oracle
|
|
|
|
module.exports = Client_StrongOracle;
|