mirror of
https://github.com/brianc/node-postgres.git
synced 2026-01-18 15:55:05 +00:00
docs: add missing parameters on pg.Client Config (#3422)
- client_encoding - fallback_application_name - options
This commit is contained in:
parent
9ec9e5f58d
commit
9cc7d8eb94
@ -23,7 +23,10 @@ type Config = {
|
||||
lock_timeout?: number, // number of milliseconds a query is allowed to be en lock state before it's cancelled due to lock timeout
|
||||
application_name?: string, // The name of the application that created this Client instance
|
||||
connectionTimeoutMillis?: number, // number of milliseconds to wait for connection, default is no timeout
|
||||
idle_in_transaction_session_timeout?: number // number of milliseconds before terminating any session with an open idle transaction, default is no timeout
|
||||
idle_in_transaction_session_timeout?: number, // number of milliseconds before terminating any session with an open idle transaction, default is no timeout
|
||||
client_encoding?: string, // specifies the character set encoding that the database uses for sending data to the client
|
||||
fallback_application_name?: string, // provide an application name to use if application_name is not set
|
||||
options?: string // command-line options to be sent to the server
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user