Re: Timestamp Conversion Woes Redux

From: Christian Cryder <c(dot)s(dot)cryder(at)gmail(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Kris Jurka <books(at)ejurka(dot)com>, Oliver Jowett <oliver(at)opencloud(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: Timestamp Conversion Woes Redux
Date: 2005-07-20 17:47:04
Message-ID: 90876a9e05072010475d161b94@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

On 7/20/05, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:
> Hmm ... does Java have a standard set of timezone names? If so, does it
> bear any resemblance to the zic database names?

Yes, you can see them by running this snippet...

String zones[] = TimeZone.getAvailableIDs();
for (int i=0; i<zones.length; i++) {
System.out.println(" "+i+": "+TimeZone.getTimeZone(zones[i]));
}

No idea how that compares to zic...

Christian

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Dave Cramer 2005-07-20 17:50:31 Re: Timestamp Conversion Woes Redux
Previous Message Tom Lane 2005-07-20 17:41:35 Re: Timestamp Conversion Woes Redux