20 lines
437 B
JavaScript
Raw Normal View History

2014-11-26 17:45:11 -06:00
'use strict';
// Oracle Client
// -------
var inherits = require('inherits')
var Client_Oracle = require('../oracle')
2014-11-26 17:45:11 -06:00
function Client_StrongOracle() {
Client_Oracle.apply(this, arguments);
2014-11-26 17:45:11 -06:00
}
inherits(Client_StrongOracle, Client_Oracle);
2014-11-26 17:45:11 -06:00
2015-04-29 17:11:52 -04:00
Client_StrongOracle.prototype._driver = function() {
return require('strong-oracle')()
2015-04-27 20:22:05 -04:00
}
Client_StrongOracle.prototype.driverName = 'strong-oracle'
2014-11-26 17:45:11 -06:00
module.exports = Client_StrongOracle;