Greenwich Mean Time (GMT) is a term originally referring to mean solar time at the Royal Observatory in Greenwich, London.

learn more… | top users | synonyms

6
votes
3answers
13k views

MySQL query for current GMT time

This sounds simple enough but I haven't been able to figure out how to use a simple SELECT statement to return the current time in GMT. I have been trying to use CONVERT_TZ() to convert NOW() to GMT ...
5
votes
6answers
1k views

can 2 timezone be for 1 city?

I want to know if there can be 2 or more GMT timezones for one city or state. I know there can be more then one GMT timezone for a country, but not sure if it's for state and city too. Share your ...
1
vote
1answer
1k views

Using Lambda expressions to order a list by GMT date

I have a list that contains dates that are in GMT format. What is the most elegant way to ensure that the following Lambda expression orders on the date field as GMT? ProductsList.OrderBy(Product ...
1
vote
4answers
124 views

Is there a function in c# which returns date&time when given GMT values(-12 to -1 and 1 to 12)?

Is there a function in c# which returns date&time when given GMT values(-12 to -1 and 1 to 12)? EDIT: I have a Dropdownlistbox which contains all GMT values.. Now i want to display date&time ...
3
votes
1answer
464 views

iPhone CurrentTimeZoneOffset from UTC

Is there a way to get the offset time zone for a given date. For example, if I am in New York and I pass in 12-12-2009 4 PM I would get back "-4" as we are 4 hours off GMT. (In .NET land there is a ...
1
vote
4answers
332 views

Offset from GMT standard time

Does Unix store the offset of the machine from GMT internally? like for eg:india standard time is GMT + 5:30.is this 5:30 stored some where? i need this to use it in a script like below if[[ off is ...
26
votes
5answers
26k views

NSDate - Convert Date to GMT

I need the ability to convert an NSDate value to a GMT Date. How can I go about converting an NSDate value to a GMT formatted NSDate value, independent of whatever date locale settings the iPhone is ...
2
votes
1answer
2k views

How to determine UTC offset from server timezone?

I've found many examples about UTC tables and php date methods to convert it, but I still miss a simple way after got server date, to converting it into an user timezone selection on my web page. On ...
0
votes
2answers
638 views

“DateTime.Now” - why does it return GMT?

I am running on a Win2003 server, TimeZone set to (GMT -06:00) Central Time. I am programming with VS.NET 2005, f/x 2.x. When I execute the following code I do not get the expected results - but ...
2
votes
3answers
1k views

user datetime setting as GMT, how to convert date to their localized setting?

In my users setting I have a dropdown with all the GMT dates for the user to select. In c#, how would I convert a datetime stored in the database to their GMT time? The time stored in the database ...
2
votes
2answers
1k views

J2ME Get current time zone

I have a j2me application and it needs to get the name of the current timezone and send it off to the server. However, the only format that I seem to be able to get the phone to give me is ...
0
votes
3answers
168 views

gmt or without gmt

this might be stupid question, but ill ask anyway. do i really need to implement gmt on site to get proper timestamp on a post? well im building a site like twitter. my feeds are working fine and ...
3
votes
5answers
11k views

JDBC Timestamp & Date GMT issues

I have a JDBC Date column, which if a i use getDate is get the 'date' part only 02 Oct 2009 but if i use getTimestamp i get the full 'date' 02 Oct 2009 13:56:78:890. This is excatly what i want. ...
0
votes
2answers
579 views

ASP.NET / SQL Timezone mystery

Setup: Windows Server 2003 / SQL Server 2005. ASP.NET 2.0. IIS 6. The site I'm working on uses ASP.NET Membership and when a user is created it is inserted into the aspnet_membership database. ...
0
votes
2answers
821 views

Which php date and time tools to use for GMT offsetting

It appears there are many ways to approach date and time massaging in php. I usually am only every dealing with local time. Today, I need to work in UTC. I am querying against an API, the data they ...
0
votes
4answers
7k views

Java - Store GMT time

My server has GMT+7, so if i move to another server has another GMT timezone, all date stored in db will incorrect? Yes Q1 is correct, how about i will store date in GMT+0 timezone and display it in ...
105
votes
20answers
164k views

How can I get the current date and time in UTC or GMT in Java?

When I create a new Date object, it is initialized to the current time but in the local timezone. How can I get the current date and time in GMT?

1 2 3 4