multi-db-orm 2.0.2 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,7 +33,10 @@ class OracleDB extends MultiDbORM {
33
33
 
34
34
  process.env.LD_LIBRARY_PATH = oracleInstantClient.path
35
35
  process.env.TS_ADMIN = wallet_dir
36
- oracledb.initOracleClient()
36
+ oracledb.initOracleClient({
37
+ configDir: wallet_dir,
38
+ libDir: oracleInstantClient.path
39
+ })
37
40
  oracledb.autoCommit = true;
38
41
  oracledb.outFormat = oracledb.OUT_FORMAT_OBJECT
39
42
  oracledb.fetchAsString = [oracledb.CLOB];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multi-db-orm",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "CRUD , Backup , Restore and Migration library for multiple databases",
5
5
  "main": "index.js",
6
6
  "dependencies": {