File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 10
10
11
11
- Added missing support for binding as ` oracledb.DB_TYPE_BINARY_INTEGER ` .
12
12
13
+ - Fixed calling ` initOracleClient() ` with TypeScript 4.4 ([ Issue
14
+ 1462] ( https://github.com/oracle/node-oracledb/issues/1462 ) ).
15
+
13
16
- Fixed numeric suffix feature (for duplicate SELECT column names when using
14
17
` oracledb.OUT_FORMAT_OBJECT ` mode) when the column name is also a JavaScript
15
18
property or method name.
Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ class OracleDb {
105
105
this . createPool = nodbUtil . callbackify ( createPool ) . bind ( _oracledb ) ;
106
106
this . shutdown = nodbUtil . callbackify ( shutdown ) . bind ( _oracledb ) ;
107
107
this . startup = nodbUtil . callbackify ( startup ) . bind ( _oracledb ) ;
108
+ this . initOracleClient = this . initOracleClient . bind ( _oracledb ) ;
108
109
}
109
110
110
111
// temporary method for determining if an object is a date until
You can’t perform that action at this time.
0 commit comments