Re: ecmascript 5 DATESTYLE

From: ben hockey <neonstalwart(at)gmail(dot)com>
To: Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Robert Haas <robertmhaas(at)gmail(dot)com>, Mike Fowler <mike(at)mlfowler(dot)com>, Peter Eisentraut <peter_e(at)gmx(dot)net>, pgsql-hackers(at)postgresql(dot)org
Subject: Re: ecmascript 5 DATESTYLE
Date: 2011-12-06 21:11:14
Message-ID: 4EDE84F2.5020505@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 12/6/2011 3:53 PM, Pavel Stehule wrote:
> I am not sure, if this patch is 100% correct
>
> but it does something
>
> the name is not ECMA but XSD - I hope, so both formats are same

that format works for me. in fact a simple test to see if it would do
what i hope for would be to open the developer console (firebug, web
developer, etc) of a browser and take the formatted output and pass it
to the Date constructor - eg using chrome:

> var a = new Date('2011-12-06T22:46:53.455866+01:00');
Date
> a.toDateString();
"Tue Dec 06 2011"
> a.toTimeString();
"16:46:53 GMT-0500 (Eastern Standard Time)"

you can see that the Date was properly created with the time converted
to my local time zone. this would be of great help to anyone passing
data from postrgres to a web browser since it eliminates the need to
have to transform the format somewhere between the database and the browser.

i'm not familiar with the process of getting this feature added to
postgres - what needs to happen now?

ben...

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Pavel Stehule 2011-12-06 21:19:35 Re: ecmascript 5 DATESTYLE
Previous Message Robert Haas 2011-12-06 21:02:31 Re: RangeVarGetRelid()