mirror of
https://github.com/knex/knex.git
synced 2025-10-05 21:16:57 +00:00
19 lines
434 B
JavaScript
19 lines
434 B
JavaScript
'use strict';
|
|
|
|
// Oracle Client
|
|
// -------
|
|
var inherits = require('inherits')
|
|
var Oracle = require('../oracle')
|
|
|
|
function Client_StrongOracle() {
|
|
Oracle.apply(this, arguments);
|
|
}
|
|
inherits(Client_StrongOracle, Oracle);
|
|
|
|
Client_StrongOracle.prototype.initDriver = function() {
|
|
Client_StrongOracle.prototype.driver = Client_StrongOracle.prototype.driver ||
|
|
require('strong-oracle')();
|
|
};
|
|
|
|
module.exports = Client_StrongOracle;
|