Re: [SQL] viewing the description of tables from python DB-API

2006-08-07 Thread George Young
On Tue, 1 Aug 2006 15:30:48 -0700 "Daniel Joo" <[EMAIL PROTECTED]> wrote: > Is there a way to view the list of all tables from python (or any other > languages for that matter) DB-API? What I'm looking for is a command > similar to the meta-command '\d' that works with the psql client. The cur

Re: [SQL] viewing the description of tables from python DB-API

2006-08-02 Thread Scott Marlowe
On Tue, 2006-08-01 at 18:14, Rodrigo De Leon wrote: > On 8/1/06, Daniel Joo <[EMAIL PROTECTED]> wrote: > > Hi all, > > > > > > > > Is there a way to view the list of all tables from python (or any other > > languages for that matter) DB-API? What I'm looking for is a command > > similar to the met

Re: [SQL] viewing the description of tables from python DB-API

2006-08-01 Thread Rodrigo De Leon
On 8/1/06, Daniel Joo <[EMAIL PROTECTED]> wrote: Hi all, Is there a way to view the list of all tables from python (or any other languages for that matter) DB-API? What I'm looking for is a command similar to the meta-command '\d' that works with the psql client. Thanks very much! Dan

Re: [SQL] viewing the description of tables from python DB-API

2006-08-01 Thread Alvaro Herrera
Daniel Joo wrote: > Is there a way to view the list of all tables from python (or any other > languages for that matter) DB-API? What I'm looking for is a command > similar to the meta-command '\d' that works with the psql client. Try \d under psql -E sometime. It'll give you the query it use

[SQL] viewing the description of tables from python DB-API

2006-08-01 Thread Daniel Joo
Hi all,   Is there a way to view the list of all tables from python (or any other languages for that matter) DB-API?  What I’m looking for is a command similar to the meta-command ‘\d’ that works with the psql client.    Thanks very much!   Dan