mirror of
https://github.com/knex/knex.git
synced 2025-10-05 04:57:13 +00:00
21 lines
482 B
JavaScript
21 lines
482 B
JavaScript
'use strict';
|
|
|
|
// Oracle Client
|
|
// -------
|
|
var inherits = require('inherits')
|
|
var Client_Oracle = require('../oracle')
|
|
var helpers = require('../../helpers')
|
|
|
|
function Client_StrongOracle() {
|
|
Client_Oracle.apply(this, arguments);
|
|
}
|
|
inherits(Client_StrongOracle, Client_Oracle);
|
|
|
|
Client_StrongOracle.prototype._driver = function() {
|
|
return require('strong-oracle')()
|
|
}
|
|
|
|
Client_StrongOracle.prototype.driverName = 'strong-oracle'
|
|
|
|
module.exports = Client_StrongOracle;
|