Files
supabase/apps/studio/components/interfaces/Settings/Database/Database.constants.ts
Joshen Lim 401d6ad6e8 Chore/update connection string settings kaizen (#20658)
* Add pooling mode dropdown to toggle between ports

* Fix

* Default pooling mode to the one thats configured

* Update based on feedback

* Fix

* Update pooling modes modal copy

* Small update

* Small copy update

* Small copy update

* Another one

* One final one
2024-01-23 20:12:20 +07:00

6 lines
407 B
TypeScript

export const TRANSACTION_MODE_DESCRIPTION =
'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.'
export const SESSION_MODE_DESCRIPTION =
'When a new client connects, a connection is assigned to the client until it disconnects. All Postgres features can be used with this option.'