Re: ecmascript 5 DATESTYLE - Mailing list pgsql-hackers

From ben hockey
Subject Re: ecmascript 5 DATESTYLE
Date
Msg-id 4EDE84F2.5020505@gmail.com
Whole thread Raw
In response to Re: ecmascript 5 DATESTYLE  (Pavel Stehule <pavel.stehule@gmail.com>)
Responses Re: ecmascript 5 DATESTYLE  (Pavel Stehule <pavel.stehule@gmail.com>)
List 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...


pgsql-hackers by date:

Previous
From: Robert Haas
Date:
Subject: Re: RangeVarGetRelid()
Next
From: Pavel Stehule
Date:
Subject: Re: ecmascript 5 DATESTYLE