@@ -1820,7 +1820,7 @@ When the number of `pool.getConnection()` calls that have been
18201820then any future `pool.getConnection()` calls will immediately return an error
18211821and will not be queued.
18221822
1823- If `queueMax` is 0 , then the queue length is not limited.
1823+ If `queueMax` is -1 , then the queue length is not limited.
18241824
18251825The default value is 500.
18261826
@@ -1835,9 +1835,9 @@ oracledb.queueMax = 500;
18351835
18361836#### <a name="propdbqueuerequests"></a> 3.2.24 `oracledb.queueRequests`
18371837
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.
18411841
18421842#### <a name="propdbqueuetimeout"></a> 3.2.25 `oracledb.queueTimeout`
18431843
@@ -2231,7 +2231,7 @@ When the number of `pool.getConnection()` calls that have been
22312231then any future `pool.getConnection()` calls will immediately return an error
22322232and will not be queued.
22332233
2234- If `queueMax` is 0 , then the queue length is not limited.
2234+ If `queueMax` is -1 , then the queue length is not limited.
22352235
22362236The default value is 500.
22372237
@@ -2240,9 +2240,9 @@ This optional property overrides the
22402240
22412241###### <a name="createpoolpoolattrsqueuerequests"></a> 3.3.1.1.15 `queueRequests`
22422242
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.
22462246
22472247###### <a name="createpoolpoolattrsqueuetimeout"></a> 3.3.1.1.16 `queueTimeout`
22482248
@@ -5560,9 +5560,8 @@ See [`oracledb.queueMax`](#propdbqueuemax).
55605560
55615561#### <a name="proppoolqueuerequests"></a> 8.1.10 `pool.queueRequests`
55625562
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.
55665565
55675566#### <a name="proppoolqueueTimeout"></a> 8.1.11 `pool.queueTimeout`
55685567
@@ -9893,7 +9892,7 @@ a [`sqlnet.ora`](#tnsadmin) file or [`CONNECT_TIMEOUT`][185] in a [connection
98939892string](#easyconnect). When using a connection pool, these values affect the
98949893time taken to establish each connection stored in the pool. The
98959894[`queueTimeout`](#propdbqueuetimeout) and [`queueMax`](#propdbqueuemax) settings
9896- control higher level pool behavior.
9895+ control higher- level pool behavior.
98979896
98989897With Oracle Client 19c, timeouts can be passed in [Easy Connect
98999898strings](#easyconnect), for example to timeout after 15 seconds:
0 commit comments