Description
Is your feature request related to a problem? Please describe.
I'm always frustrated when the current DSN (Data Source Name) for PostgreSQL database as it does not support specifying a schema for databases that require schema selection. This results in needing to manually set the schema after establishing a connection or handling it separately in the code.
Describe the solution you'd like
I would like to have the ability to specify a schema directly within the DSN so that when a connection is established, the appropriate schema is selected automatically.
Describe alternatives you've considered
An alternative solution would be to execute a query to set the schema immediately after the connection is established, but this adds complexity and overhead to the connection process.
Additional context
This feature would streamline connections for databases with multiple schemas and reduce manual configuration.