Database.constants.ts5 lines · main
| 1 | export const TRANSACTION_MODE_DESCRIPTION = |
| 2 | 'Connection is assigned to the client for the duration of a transaction. Some session-based Postgres features such as prepared statements are not available with this option.' |
| 3 | |
| 4 | export const SESSION_MODE_DESCRIPTION = |
| 5 | 'When a new client connects, a connection is assigned to the client until it disconnects. All Postgres features can be used with this option.' |