You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -692,10 +692,11 @@ Note that `odbc.pool` will return from callback or Promise as soon as it has cre
692
692
***connectionString**: The connection string to connect to the database for all connections in the pool, usually by naming a DSN. Can also be a configuration object with the following properties:
693
693
*`connectionString`**REQUIRED**: The connection string to connect to the database
694
694
*`connectionTimeout`: The number of seconds to wait for a request on the connection to complete before returning to the application
695
-
*`loginTimeout`:The number of seconds to wait for a login request to complete before returning to the application
695
+
*`loginTimeout`:The number of seconds to wait for a login request to complete before returning to the application
696
696
*`initialSize`: The initial number of Connections created in the Pool
697
697
*`incrementSize`: How many additional Connections to create when all of the Pool's connections are taken
698
698
*`maxSize`: The maximum number of open Connections the Pool will create
699
+
*`reuseConnections`: Whether or not to reuse an existing Connection instead of creating a new one
699
700
*`shrink`: Whether or not the number of Connections should shrink to `initialSize` as they free up
700
701
***callback?**: The function called when `.connect` has finished connecting. If no callback function is given, `.connect` will return a native JavaScript `Promise`. Callback signature is:
701
702
* error: The error that occured in execution, or `null` if no error
0 commit comments