Re: qualified names

Поиск
Список
Период
Сортировка
От Tim Bowden
Тема Re: qualified names
Дата
Msg-id 1252902272.12168.8.camel@mordor
обсуждение исходный текст
Ответ на qualified names  (manaus <s_incocciati@hotmail.com>)
Список pgsql-novice
On Sun, 2009-09-13 at 19:38 +0200, manaus wrote:
> Hello,
> If I set search_path to one of the schemas, I can use psql without
> writing the qualified names.
> In my application instead the server returns error if I dont use select
> * from myschema.mytable.
> Is this fixable?
>
> thanks...
>
>

There are several ways to deal with this.

1.  To solve the problem for the current instance, do:
SET search_path TO schema1, schema2, ... ;
from you application as required.

2.  For a permanent solution for that user only, do:
ALTER USER <username> SET search_path TO schema1, schema2, ... ;
for the username that your application connects as.  The new settings
will take effect on the next login.  There is no need to stop the
database server to make these changes.

HTH,
Tim Bowden


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

Предыдущее
От: raghu ram
Дата:
Сообщение: Re: qualified names
Следующее
От: John DeSoi
Дата:
Сообщение: Re: type conversion