@@ -1820,7 +1820,7 @@ When the number of `pool.getConnection()` calls that have been
1820
1820
then any future `pool.getConnection()` calls will immediately return an error
1821
1821
and will not be queued.
1822
1822
1823
- If `queueMax` is 0 , then the queue length is not limited.
1823
+ If `queueMax` is -1 , then the queue length is not limited.
1824
1824
1825
1825
The default value is 500.
1826
1826
@@ -1835,9 +1835,9 @@ oracledb.queueMax = 500;
1835
1835
1836
1836
#### <a name="propdbqueuerequests"></a> 3.2.24 `oracledb.queueRequests`
1837
1837
1838
- This property was removed in node-oracledb 3.0. Queuing is now always
1839
- enabled. See [Connection Pool Queue](#connpoolqueue) for more
1840
- information.
1838
+ This property was removed in node-oracledb 3.0 and queuing was always enabled.
1839
+ In node-oracledb 5.0, set `queueMax` to 0 to disable queuing. See [Connection
1840
+ Pool Queue](#connpoolqueue) for more information.
1841
1841
1842
1842
#### <a name="propdbqueuetimeout"></a> 3.2.25 `oracledb.queueTimeout`
1843
1843
@@ -2231,7 +2231,7 @@ When the number of `pool.getConnection()` calls that have been
2231
2231
then any future `pool.getConnection()` calls will immediately return an error
2232
2232
and will not be queued.
2233
2233
2234
- If `queueMax` is 0 , then the queue length is not limited.
2234
+ If `queueMax` is -1 , then the queue length is not limited.
2235
2235
2236
2236
The default value is 500.
2237
2237
@@ -2240,9 +2240,9 @@ This optional property overrides the
2240
2240
2241
2241
###### <a name="createpoolpoolattrsqueuerequests"></a> 3.3.1.1.15 `queueRequests`
2242
2242
2243
- This property was removed in node-oracledb 3.0. Queuing is now always
2244
- enabled. See [Connection Pool Queue](#connpoolqueue) for more
2245
- information.
2243
+ This property was removed in node-oracledb 3.0 and queuing was always enabled.
2244
+ In node-oracledb 5.0, set `queueMax` to 0 to disable queuing. See [Connection
2245
+ Pool Queue](#connpoolqueue) for more information.
2246
2246
2247
2247
###### <a name="createpoolpoolattrsqueuetimeout"></a> 3.3.1.1.16 `queueTimeout`
2248
2248
@@ -5560,9 +5560,8 @@ See [`oracledb.queueMax`](#propdbqueuemax).
5560
5560
5561
5561
#### <a name="proppoolqueuerequests"></a> 8.1.10 `pool.queueRequests`
5562
5562
5563
- This property was removed in node-oracledb 3.0. Queuing is now always
5564
- enabled. See [Connection Pool Queue](#connpoolqueue) for more
5565
- information.
5563
+ This property was removed in node-oracledb 3.0. See [Connection Pool
5564
+ Queue](#connpoolqueue) for more information.
5566
5565
5567
5566
#### <a name="proppoolqueueTimeout"></a> 8.1.11 `pool.queueTimeout`
5568
5567
@@ -9893,7 +9892,7 @@ a [`sqlnet.ora`](#tnsadmin) file or [`CONNECT_TIMEOUT`][185] in a [connection
9893
9892
string](#easyconnect). When using a connection pool, these values affect the
9894
9893
time taken to establish each connection stored in the pool. The
9895
9894
[`queueTimeout`](#propdbqueuetimeout) and [`queueMax`](#propdbqueuemax) settings
9896
- control higher level pool behavior.
9895
+ control higher- level pool behavior.
9897
9896
9898
9897
With Oracle Client 19c, timeouts can be passed in [Easy Connect
9899
9898
strings](#easyconnect), for example to timeout after 15 seconds:
0 commit comments