mirror of
https://github.com/knex/knex.git
synced 2025-07-26 10:20:36 +00:00
17 lines
325 B
JavaScript
17 lines
325 B
JavaScript
![]() |
'use strict';
|
||
|
|
||
|
// Oracle Client
|
||
|
// -------
|
||
|
var inherits = require('inherits')
|
||
|
var Client_Oracle = require('../oracle')
|
||
|
|
||
|
function Client_OracleDb() {
|
||
|
Client_Oracle.apply(this, arguments);
|
||
|
}
|
||
|
inherits(Client_OracleDb, Client_Oracle);
|
||
|
|
||
|
Client_OracleDb.prototype.driverName = 'oracledb'
|
||
|
|
||
|
module.exports = Client_OracleDb;
|
||
|
|