Re: table column information - Mailing list pgsql-php

From ljb
Subject Re: table column information
Date
Msg-id c890e8$12ql$1@news.hub.org
Whole thread Raw
In response to table column information  ("Scot L. Harris" <webid@cfl.rr.com>)
Responses Re: table column information  ("Scot L. Harris" <webid@cfl.rr.com>)
Re: table column information  (Andrew McMillan <andrew@catalyst.net.nz>)
Re: table column information  (Stefan Gastaldon <stefang@bundaberg.qld.gov.au>)
List pgsql-php
webid@cfl.rr.com wrote:
> Currently using Postgresql 7.2.4-5.80 with php 4.2.2.-8.0.8 on a redhat
> 8.0 system.
>
> I am writing some php scripts where I want to generate a list of the
> column names in a particular table that the user selects.  I could take
> the brute force method and hard code the column names but then every
> time I add a new table or modify an existing one I would have to modify
> the code.  What I want is to have a generic function that given the
> table name it will pull the column names for my use.
>
> I need to get the table column names for several tables I have setup.  I
> know if I do a select * from tablename I can then use the pg_fieldname
> function to pull the column names for all columns.
>
> But I don't think I want to select the entire contents of the table
> every time I want to get the names of the columns.  I know this will
> work but I think performance will be very poor.
>...

You almost got it - just do "select * from tablename where 0=1", which returns
no rows but will give you the fieldnames. A portable and (I think)
efficient way to get table column names.

pgsql-php by date:

Previous
From: "Scot L. Harris"
Date:
Subject: table column information
Next
From: "Scot L. Harris"
Date:
Subject: Re: table column information