Re: [GENERAL] What is exactly a schema? - Mailing list pgsql-general

From Thomas Kellerer
Subject Re: [GENERAL] What is exactly a schema?
Date
Msg-id okaf6q$44q$1@blaine.gmane.org
Whole thread Raw
In response to Re: [GENERAL] What is exactly a schema?  (marcelo <marcelo.nicolet@gmail.com>)
Responses Re: [GENERAL] What is exactly a schema?  (marcelo <marcelo.nicolet@gmail.com>)
List pgsql-general
marcelo schrieb am 14.07.2017 um 13:59:
> Could I select a specific schema in the connection string? Say, by example database=mydb.schemanumbertwo ?

The JDBC driver does indeed support that:

   jdbc:postgresql://localhost/somedatabase?currentSchema=some_schema

I think in the backround it then simply runs a

   set search_path = some_schema;

after the connection has been established.


pgsql-general by date:

Previous
From: marcelo
Date:
Subject: Re: [GENERAL] What is exactly a schema?
Next
From: Jerry Sievers
Date:
Subject: Re: [GENERAL] What is exactly a schema?