Re: Get a list of databases? - Mailing list pgsql-novice

From Kevin Hunter
Subject Re: Get a list of databases?
Date
Msg-id 45E44602.801@earlham.edu
Whole thread Raw
In response to Re: Get a list of databases?  (joseph speigle <joesp@sirfsup.com>)
List 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 by date:

Previous
From: joseph speigle
Date:
Subject: Re: Get a list of databases?
Next
From: Brian Hurt
Date:
Subject: Revoking the right to create (non-temporary) tables?