Re: Comments and datestyle

From: Keary Suska <hierophant(at)pcisys(dot)net>
To: Postgres-PHP <pgsql-php(at)postgresql(dot)org>
Subject: Re: Comments and datestyle
Date: 2002-12-02 20:16:31
Message-ID: BA110DAF.15F25%hierophant@pcisys.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

on 12/2/02 12:26, kelvin(at)varst(dot)dk purportedly said:

> Q1: Is there any way I can get the comments, I wrote on each colomn when I
> created the table?

Well, there is no mechanism in Postgres for specifying comments during table
creation, but some apps emulate this by calling the COMMENT command as
applicable. In any case, to retrieve table comments:

SELECT pg_description.description FROM pg_class, pg_description WHERE
pg_class.relname = 'table_name' AND pg_class.oid = pg_description.classoid

> Q2: I have a datestyle on the database witch is ISO, EUROPEAN (02-12-2002).
> Then I have a coloumn with the type Date. When I query the table, the format
> written on my homepage is ISO, US (2002-12-02). How can I convert the
> datestyle on the homepage, so it matches the database datestyle?

DATESTYLE is a run-time configuration variable, and is only valid for the
connected session, which isn't reliable in an HTTP environment. You are
better off using to_char() to format your date output.

Keary Suska
Esoteritech, Inc.
"Leveraging Open Source for a better Internet"

In response to

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Adrian Tineo 2002-12-05 14:58:08 Graphical representation of database schema
Previous Message Kelvin Varst 2002-12-02 19:26:07 Comments and datestyle