fixing oracle output format

This commit is contained in:
Kononnable 2018-06-19 23:45:06 +02:00
parent 4757fd814f
commit 36ed40e679
2 changed files with 3 additions and 0 deletions

View File

@ -1,5 +1,7 @@
# Changelog
## 0.2.18
* oracle output format fixed
## 0.2.17

View File

@ -9,6 +9,7 @@ export class OracleDriver extends AbstractDriver {
super();
try {
this.Oracle = require("oracledb");
this.Oracle.outFormat = this.Oracle.OBJECT;
} catch (error) {
TomgUtils.LogError("", false, error);
throw error;