mirror of
https://github.com/knex/knex.git
synced 2025-12-27 15:08:47 +00:00
Drop support for strong-oracle (#2487)
This commit is contained in:
parent
51ee9bba17
commit
05e9150346
@ -1,16 +0,0 @@
|
||||
|
||||
// Oracle Client
|
||||
// -------
|
||||
import inherits from 'inherits';
|
||||
import Client_Oracle from '../oracle';
|
||||
|
||||
function Client_StrongOracle() {
|
||||
Client_Oracle.apply(this, arguments);
|
||||
}
|
||||
inherits(Client_StrongOracle, Client_Oracle);
|
||||
|
||||
Client_StrongOracle.prototype._driver = () => require('strong-oracle')()
|
||||
|
||||
Client_StrongOracle.prototype.driverName = 'strong-oracle'
|
||||
|
||||
export default Client_StrongOracle;
|
||||
@ -82,17 +82,6 @@ var testConfigs = {
|
||||
seeds: seeds,
|
||||
},
|
||||
|
||||
oracle: {
|
||||
client: 'strong-oracle',
|
||||
connection: testConfig.oracle || {
|
||||
adapter: "oracle",
|
||||
database: "knex_test",
|
||||
user: "oracle"
|
||||
},
|
||||
pool: pool,
|
||||
migrations: migrations
|
||||
},
|
||||
|
||||
oracledb: {
|
||||
client: 'oracledb',
|
||||
connection: testConfig.oracledb || {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user