Re: Get a list of databases?

Поиск
Список
Период
Сортировка
От Kevin Hunter
Тема Re: Get a list of databases?
Дата
Msg-id 45E44602.801@earlham.edu
обсуждение исходный текст
Ответ на Re: Get a list of databases?  (joseph speigle <joesp@sirfsup.com>)
Список pgsql-novice
On 27 Feb 2007 at 3:12p +0900, Joseph Speigle wrote:
>> My code needs to be able to allow the user to select which
>> database to connect to.
>>
>> Is there a programmatic way to get a list of the databases
>> managed by a pgsql server?
> you mean like 'psql >\l' ?
> try
> select datname from pg_database;

I found that setting the ECHO_HIDDEN psql runtime variable to be fairly
informative with something like this.  It basically explains exactly the
queries it runs against the DB to do anything.  Either from the
commandline or in your .psqlrc file:

\set ECHO_HIDDEN TRUE

Then do something mundane like '\d'.

HTH,

Kevin

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

Предыдущее
От: joseph speigle
Дата:
Сообщение: Re: Get a list of databases?
Следующее
От: Brian Hurt
Дата:
Сообщение: Revoking the right to create (non-temporary) tables?