20 lines
438 B
JavaScript
Raw Normal View History

2014-11-26 17:45:11 -06:00
// Oracle Client
// -------
2015-05-09 14:01:19 -04:00
'use strict';
2015-05-09 13:58:18 -04:00
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-05-09 13:58:18 -04:00
Client_StrongOracle.prototype._driver = function () {
return require('strong-oracle')();
};
2015-04-27 20:22:05 -04:00
2015-05-09 13:58:18 -04:00
Client_StrongOracle.prototype.driverName = 'strong-oracle';
2015-05-09 13:58:18 -04:00
module.exports = Client_StrongOracle;