You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
438 B
JavaScript
20 lines
438 B
JavaScript
|
|
// Oracle Client
|
|
// -------
|
|
'use strict';
|
|
|
|
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._driver = function () {
|
|
return require('strong-oracle')();
|
|
};
|
|
|
|
Client_StrongOracle.prototype.driverName = 'strong-oracle';
|
|
|
|
module.exports = Client_StrongOracle; |