Re: Search path in connection string

Поиск
Список
Период
Сортировка
От David Johnston
Тема Re: Search path in connection string
Дата
Msg-id 023a01cd6eb5$32a1e8a0$97e5b9e0$@yahoo.com
обсуждение исходный текст
Ответ на Search path in connection string  (Julien Demoor <jdemoor@gmail.com>)
Ответы Re: Search path in connection string  (Valentine Gogichashvili <valgog@gmail.com>)
Список pgsql-jdbc

From: pgsql-jdbc-owner@postgresql.org [mailto:pgsql-jdbc-owner@postgresql.org] On Behalf Of Julien Demoor
Sent: Monday, July 30, 2012 8:56 AM
To: pgsql-jdbc@postgresql.org
Subject: [JDBC] Search path in connection string

 

There have been a number of messages on this list suggesting that the Postgres JDBC driver should support setting the search path as part of the connection string.

 

Can this be considered?

 

I have a use case where there doesn't appear to be any good alternatives: using BIRT, with multiple clients sharing a Postgres database with one schema each, one cannot just execute a SET SCHEMA statement (UPDATE pg_settings ... is not possible either) and qualifying object names is also not always possible (say, if there are stored procedures involved that use unqualified object names).

 

Besides being useful in this case and surely others, this feature makes sense: schemas can be used to offer separation of database objects very similar to that offered by having multiple databases, and the database itself is part of the connection string.

 

 

Regards,

Julien

 

 

You can customize the connection string to accomplish this.  You vary the “user” that is connecting and configure a search_path specific to that user.

 

ALTER ROLE custom_role SET search_path = …

 

David J.

 

В списке pgsql-jdbc по дате отправления:

Предыдущее
От: Julien Demoor
Дата:
Сообщение: Search path in connection string
Следующее
От: Brady Mathis
Дата:
Сообщение: Re: Opening view that uses a function - empty column