@@ -766,15 +766,15 @@ or [`queryStream()`](#querystream) calls can override the
766
766
` fetchAsBuffer ` global setting by
767
767
using [ ` fetchInfo ` ] ( #executeoptions ) .
768
768
769
+ This property was added in node-oracledb 1.13.
770
+
769
771
##### Example
770
772
771
773
``` javascript
772
774
var oracledb = require (' oracledb' );
773
775
oracledb .fetchAsBuffer = [ oracledb .BLOB ];
774
776
```
775
777
776
- This property was added in node-oracledb 1.13.
777
-
778
778
#### <a name =" propdbfetchasstring " ></a > 3.2.8 ` oracledb.fetchAsString `
779
779
780
780
```
@@ -904,15 +904,15 @@ readonly String oracleClientVersionString
904
904
905
905
This readonly property gives a string representation of the Oracle client library version which is useful for display.
906
906
907
+ This property was added in node-oracledb 2.2.
908
+
907
909
##### Example
908
910
909
911
``` javascript
910
912
var oracledb = require (' oracledb' );
911
913
console .log (" Oracle client library version is " + oracledb .oracleClientVersionString );
912
914
```
913
915
914
- This property was added in node-oracledb 2.2.
915
-
916
916
#### <a name =" propdboutformat " ></a > 3.2.13 ` oracledb.outFormat `
917
917
918
918
```
@@ -943,15 +943,15 @@ This property may be overridden in
943
943
an [ ` execute() ` ] ( #executeoptions )
944
944
or [ ` queryStream() ` ] ( #querystream ) call.
945
945
946
+ See [ Query Output Formats] ( #queryoutputformats ) for more information.
947
+
946
948
##### Example
947
949
948
950
``` javascript
949
951
var oracledb = require (' oracledb' );
950
952
oracledb .outFormat = oracledb .ARRAY ;
951
953
```
952
954
953
- See [ Query Output Formats] ( #queryoutputformats ) for more examples.
954
-
955
955
#### <a name =" propdbpoolincrement " ></a > 3.2.14 ` oracledb.poolIncrement `
956
956
957
957
```
@@ -1056,14 +1056,15 @@ This property may be overridden when [creating a connection pool](#createpool).
1056
1056
1057
1057
See [ Connection Pool Pinging] ( #connpoolpinging ) for more discussion.
1058
1058
1059
+ This property was added in node-oracledb 1.12.
1060
+
1059
1061
##### Example
1062
+
1060
1063
``` javascript
1061
1064
var oracledb = require (' oracledb' );
1062
1065
oracledb .poolPingInterval = 60 ; // seconds
1063
1066
```
1064
1067
1065
- This property was added in node-oracledb 1.12.
1066
-
1067
1068
#### <a name =" propdbpooltimeout " ></a > 3.2.18 ` oracledb.poolTimeout `
1068
1069
1069
1070
```
@@ -1151,17 +1152,17 @@ The default value is *true*.
1151
1152
1152
1153
This property may be overridden when [ creating a connection pool] ( #createpool ) .
1153
1154
1155
+ See [ Connection Pool Queue] ( #connpoolqueue ) for more information.
1156
+
1157
+ This property was added in node-oracledb 1.7.
1158
+
1154
1159
##### Example
1155
1160
1156
1161
``` javascript
1157
1162
var oracledb = require (' oracledb' );
1158
1163
oracledb .queueRequests = false ;
1159
1164
```
1160
1165
1161
- See [ Connection Pool Queue] ( #connpoolqueue ) for more information.
1162
-
1163
- This property was added in node-oracledb 1.7.
1164
-
1165
1166
#### <a name =" propdbqueuetimeout " ></a > 3.2.22 ` oracledb.queueTimeout `
1166
1167
1167
1168
```
@@ -1176,17 +1177,17 @@ The default value is 60000.
1176
1177
1177
1178
This property may be overridden when [ creating a connection pool] ( #createpool ) .
1178
1179
1180
+ See [ Connection Pool Queue] ( #connpoolqueue ) for more information.
1181
+
1182
+ This property was added in node-oracledb 1.7.
1183
+
1179
1184
##### Example
1180
1185
1181
1186
``` javascript
1182
1187
var oracledb = require (' oracledb' );
1183
1188
oracledb .queueTimeout = 3000 ; // 3 seconds
1184
1189
```
1185
1190
1186
- See [ Connection Pool Queue] ( #connpoolqueue ) for more information.
1187
-
1188
- This property was added in node-oracledb 1.7.
1189
-
1190
1191
#### <a name =" propdbstmtcachesize " ></a > 3.2.23 ` oracledb.stmtCacheSize `
1191
1192
1192
1193
```
@@ -1236,31 +1237,31 @@ readonly String versionString
1236
1237
1237
1238
This readonly property gives a string representation of the node-oracledb version, including the version suffix if one is present.
1238
1239
1240
+ This property was added in node-oracledb 2.1.
1241
+
1239
1242
##### Example
1240
1243
1241
1244
``` javascript
1242
1245
var oracledb = require (' oracledb' );
1243
1246
console .log (" Driver version is " + oracledb .versionString );
1244
1247
```
1245
1248
1246
- This property was added in node-oracledb 2.1.
1247
-
1248
1249
#### <a name =" propdbversionsuffix " ></a > 3.2.26 ` oracledb.versionSuffix `
1249
1250
```
1250
1251
readonly String versionSuffix
1251
1252
```
1252
1253
1253
1254
This readonly property gives a string representing the version suffix (e.g. "-dev" or "-beta") or an empty string if no version suffix is present.
1254
1255
1256
+ This property was added in node-oracledb 2.1.
1257
+
1255
1258
##### Example
1256
1259
1257
1260
``` javascript
1258
1261
var oracledb = require (' oracledb' );
1259
1262
console .log (" Driver version suffix is " + oracledb .versionSuffix );
1260
1263
```
1261
1264
1262
- This property was added in node-oracledb 2.1.
1263
-
1264
1265
### <a name =" oracledbmethods " ></a > 3.3 Oracledb Methods
1265
1266
1266
1267
#### <a name =" createpool " ></a > 3.3.1 ` oracledb.createPool() `
@@ -1670,6 +1671,8 @@ expired.
1670
1671
1671
1672
See [ Changing Passwords and Connecting with an Expired Password] ( #changingpassword ) .
1672
1673
1674
+ This property was added in node-oracledb 2.2.
1675
+
1673
1676
###### <a name =" getconnectiondbattrspassword " ></a > 3.3.2.1.2.5 ` password `
1674
1677
1675
1678
```
0 commit comments