Re: Timestamp Conversion Woes Redux - Mailing list pgsql-jdbc

From Christian Cryder
Subject Re: Timestamp Conversion Woes Redux
Date
Msg-id 90876a9e05072010475d161b94@mail.gmail.com
Whole thread Raw
In response to Re: Timestamp Conversion Woes Redux  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: Timestamp Conversion Woes Redux  (Dave Cramer <davec@fastcrypt.com>)
List pgsql-jdbc
On 7/20/05, Tom Lane <tgl@sss.pgh.pa.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

pgsql-jdbc by date:

Previous
From: Tom Lane
Date:
Subject: Re: Timestamp Conversion Woes Redux
Next
From: Dave Cramer
Date:
Subject: Re: Timestamp Conversion Woes Redux