DateTimeOffset is a data structure that encapsulates a DateTime value and the Offset from UTC that the value reflects. It is used to represent an instantaneous moment in time, while still capturing the perspective of the observer.

learn more… | top users | synonyms

0
votes
1answer
54 views

Is there a way to convert a DateTimeOffset into minutes since midnight?

Is there a way to convert a DateTimeOffset into minutes since midnight? I want the offset part to be reflected in the answer it gives.
1
vote
2answers
83 views

How to Parse Datetime sec.ms

i have a string 1368352924.281610000 presenting the DateTime. How can i parse this? Is tried: string rststr = Convert.ToString(result); string[] rststrarr = ...
1
vote
1answer
53 views

Parse string with date and timezone to UTC datetime

I'm coding a Python 3 script that receives a full date with offset and I want to be able to compare it to another date without offset. The main problem I'm facing is that Python doesn't seem to like ...
3
votes
1answer
34 views

How to keep the timezone when parsing a date?

I parse a date that comes with time zone information, say: 1/7/2008 11:00:00 AM -0700. The -0700 corresponds to the current time offset here in California, since we are now in PDT. If I parse it and ...
3
votes
4answers
132 views

Specified Cast is not valid when DataBind to Nullable DateTimeOffset and field is NULL

I've created a simple CompositeControl and exposed a Nullable DateTimeOffset property. I'm binding the control to a SQL Server DateTimeOffset field using DateTimeOffset='<%# ...
2
votes
1answer
50 views

ServiceStack OrmLite and DateTimeOffset support in the UK

I am getting an issue with OrmLite and DateTimeOffset support. I am based in the UK and believe that it is related. I have a table with a column of type DateTimeOffset. I get the following SQL ...
2
votes
3answers
44 views

Checking date and its patten with expected pattern

I have a date and it's supposed pattern in string. //True String date ="2012-10-12 12:01:10.10.150"; String pattern = "yyyy-MM-dd hh:mm:ss.SSS"; //False String date ="2012-10-12 12:01:10.150"; ...
0
votes
1answer
89 views

DateTimeOffset value changing

I'm moving data that is currently been stored as a int to DateTimeOffset. Example here is the starting value 1341190841 and when I use this query : dateadd (s,Call.StartTime, '1970-01-01') AS ...
1
vote
1answer
92 views

Where to set a UTC datetime value in n-tier application: Presentation Layer, Domain, or Database?

This seems like it should be an obvious question, but I have had some issues finding a good answer. I am building an n-tier application that needs to be UTC time sensitive. Values can be updated and ...
3
votes
2answers
43 views

DateTimeOffset in Log4Net

What is log4net.Layout.PatternLayout value to output DateTimeOffset data type to database? This is what I have currently in configuration file for log4net: <log4net> .... <parameter> ...
0
votes
3answers
119 views

ColdFusion - DateTime Format with GMT offset

I am using ColdFusion 10 to make some REST calls and the date returned is using a GMT offset. Example: 2013-03-25T14:30:40-04:00 I need this formatted for 2 purposes: Screen Display so it looks ...
3
votes
3answers
147 views

There is a difference between local and server time

In MVC4 C# application I used DateTime.Now when object created in my application. After deploying, there was +8 hours difference between local computer and hosting. Then I changed it to ...
0
votes
2answers
181 views

IST to EST Time Conversion In Java

I have a Date field in Java in IST Time. I want to convert the same to EST Time and the output should be as a Date Type only. I am able to accomplish the same using the below piece of code:- ...
0
votes
1answer
62 views

PHP DateTimeZone::getOffSet Get offset from UTC - Example yields 0 [closed]

I'm attempting to figure offset in php. I have a date string and a timezone value. The date string timezone is UTC. <?php error_reporting(E_ALL); $timezone = "America/New_York"; $datestring = ...
1
vote
2answers
42 views

Create DateTimeOffset 00:01 / 23:59 from given DateTimeOffset for same day

Warning - TSQL newbie question ahead: I've got a DateTimeOffset for, say, 2013-03-11 11:04:26.0000000 +00:00 and I need to create two new dates for the same day, one at 00:01 and another one at ...
3
votes
2answers
74 views

Adjusting a DateTime to DST

To keep it short and sweet I have 2 PC's: PC 1 has DST switched off PC 2 has DST switched on. PC 1 sends a DateTime to PC 2 which it takes and uses to set its time. All the above I ...
4
votes
1answer
70 views

Losing precision when saving a DateTimeOffset setting in project settings

When I save a DateTimeOffest in my project settings, I'm losing some precision : The first variable is the original value, before serialization. The second is the value after Deserialization. In ...
1
vote
2answers
79 views

How to figure out if the Date string contains time offset added already in Javascript?

Consider this date string: "2012-08-20T15:00:00-07:00" It has time offset added as "-07:00" How can I find out it has this offset added? I know I can do it with regular expressions. But is there ...
0
votes
1answer
68 views

SQL Server rows per minute

I'm sorry, I couldn't come up with a better title. I have a table that has a row inserted every time someone hits my JSON api. In essence it has 2 columns, Ipaddress (nvarchar) and date ...
0
votes
2answers
88 views

Rails localtime returns wrong time zone

I have a problem where when saving a datetime attribute, the form returns -04:00 instead of -05:00 Using Rails 3.2.3 In application.rb: config.time_zone = 'Eastern Time (US & Canada)' Using ...
2
votes
3answers
647 views

Convert UTC DateTime to DateTimeOffset

I need to convert UTC date strings to DateTimeOffsets. This must work with a timezone which differs from the computers timezone. E.g. current computer timezone is +02:00, but I want to create a ...
2
votes
1answer
561 views

The UTC time represented when the offset is applied must be between year 0 and 10,000. Parameter name: offset

I have the following code in an ASP.NET MVC3 Controller: public PartialViewResult GetCalendar(int? month, int? year) { var test = new DateTime((year.HasValue ? year.Value : 1), ...
0
votes
0answers
92 views

User-friendly time zone names in Symfony2

When Symfony2 renders a form input of type "timezone", it uses the names from the time zone database (e.g. "America/Los Angeles") for both the option values and the display. Is there a way to display ...
0
votes
1answer
149 views

Rails change default timezone

I'm trying to change default timezone in Rails 3.2.8 app to GMT+04:00, but I don't know how to do it. The following solutions do not work for me: config.time_zone = 'Moscow' config.time_zone = ...
0
votes
1answer
197 views

confusion around DateTimeOffset and TimeZones

I am currently developing a .net application that will be used in multiple different countries and time zones. The back end database is sql server. I have been looking in to the datetime, datetime2 ...
0
votes
1answer
104 views

how to convert string to DateTime as UTC as simple as that

assume I have this string : How can I convert it to DateTimeOffset object that will have UTC time - means -00:00 as Time Zone - even if I run it on machine on a specific timezone? Assume String: ...
3
votes
3answers
375 views

Why TryParseExact does not work in this example?

I cannot make this work -it always returns False. What do I miss here? DateTimeOffset parsedDate; if ( DateTimeOffset.TryParseExact("2012-10-31 23:59:59", "YYYY-MM-dd HH:mm:ss" ...
2
votes
1answer
506 views

SQL Server DateTimeOffset matching same “day”

My application needs to collect "Tuesday's" purchases for all locations world wide, where "Tueday" is the location's Tuesday (regardless of time zone). And if the user needs to re-run the report next ...
0
votes
1answer
141 views

DateTimeOffset with JPA (hibernate)

I have a JPA using Hibernate connected to SQLserver. It works but i have an exception each time i use entity with DateTimeOffset fields. I tried with a custom type and used it like this: ...
1
vote
3answers
306 views

protobuf datetimeoffset

Just wanted to share an observation about the R561 version of protobuf-net. When using DateTimeOffSet, an exception InvalidOperationException (No serializer defined for type: ...
0
votes
1answer
111 views

SSM doesnt allow me to edit a Datetimeoffset field in edit top 200

SQLserver version Microsoft SQL Server Management Studio 10.0.5500.0 Microsoft Analysis Services Client Tools 10.0.5500.0 Microsoft Data ...
0
votes
0answers
50 views

Ignore DayLightSaving in .net setting some config

I have an application C# .net consuming a service with DateTime. This servie returns the DateTimes values with timezone information (-01:00 for example). I already read solutions like timezoneoffset ...
1
vote
1answer
473 views

Implementing IConvertible like functionality for non modifiable types

I have an issue with IConvertible, in short: If DateTimeOffset implemented IConvertible I would not have an issue. You cannot use extension methods to implement an interface, so that road is closed. ...
0
votes
2answers
90 views

Ruby - new_offset losing a second

I'm not sure if this behaviour is intended, but it seems a bit weird to me. I'm using the code from How do you get DateTime.parse to return a time in your time zone? require 'date' estHoursOffset = ...
5
votes
2answers
1k views

Why does Json.NET DeserializeObject change the timezone to local time?

I'm using json.net to deserialize a DateTimeOffset, but it is ignoring the specified timezone and converting the datetime to the local offset. For example, given var content = ...
0
votes
2answers
249 views

How do you store DateTimeOffset in a SQL Server DateTime field

This is in C# I'm consuming data from an RSS feed and want to store the data in our database. The problem that I'm having is how to store the LastUpdateTime. XmlReader reader = ...
1
vote
0answers
670 views

The conversion of a datetimeoffset data type to a datetime data type resulted in an out-of-range value

Using SQL Server 2008.I have a table called User which has a column LastLogindata with datetimeoffset datatype The following query works on production server but not on replication server. select ...
1
vote
2answers
157 views

Is it possible to set DateTimeOffset to a SAME offset for all the Silverlight clients?

I use DateTimeOffset for the date/time values. And what I want to achieve is, for all the clients who load their page to run a SilverLight app., I want them to see the Dates according to a specific ...
1
vote
1answer
52 views

How do you call an instance method on BCL type from T-SQL without uploading a full SQLCLR assembly?

I have a datetimeoffset column in a table with varying TZ offsets in the rows. I'd like to run them all through the ToLocalTime method on the BCL type System.DateTimeOffset (due to Daylight Saving, I ...
2
votes
2answers
437 views

How to save DateTime as Date with TimeZone offset included?

I have some DateTime including TimeZone Europe/Vienna (+0200). It is fetched by this method: settlementService.getPendingPeriodStart() and look with toString like this: ...
0
votes
1answer
111 views

Change the offset alone in a JodaDate without changing the date and time information

I get a String like this "2012-07-01T06:00 +02:00" as input. It is in CET. But this String should have been "2012-07-01T06:00 +01:00". We can't change anything on the original source. Now I want to ...
1
vote
1answer
400 views

Why is it so hard to convert from one time zone to another?

I have read through multiple posts here until my head was ready to explode with little lines on the atlas strewn all over. Here is what I wanted to do: I have a calendar full of appointments to ...
0
votes
1answer
251 views

Fatal error: Undefined class constant 'PER_COUNTRY'

I'm Trying to find Timezone for a Country by Using Below Code. // FIND TIMEZONE CODE FROM COUNTRY CODE HERE // COUNTRY CODE SHOULD BE IN ISO2 FORMAT $country_code = 'GR'; ...
0
votes
2answers
307 views

Datetime and offsets in .net

How can I schedule a background job to start every day at 9pm in Colombian time? Im using quartz.net public class Program { static void Main(string[] args) { // ...
7
votes
3answers
831 views

Is there any reason not to use DateTimeOffset instead of DateTime?

Currently we are facing issues when showing data that was collected in different timezones. DateTime can interpret the datetime correctly if an offset is present, but the offset information is lost ...
-4
votes
1answer
735 views

How convert PST Unix timestamp to UTC? [closed]

How convert PST Unix timestamp to UTC and then to any custom time zone (GMT+2, ...) ? Please provide solution in javascript or nodejs lib (momentjs)
0
votes
1answer
498 views

Does the C# method TimeZoneInfo.ConvertTime handle DST?

I have the following list of time zones that a user can choose from, Mountain Standard Time is in there twice for Arizona. These aren't want they see when they choose. I pulled this list of a ...
1
vote
2answers
563 views

SSIS getdate into DateTimeOffset column - data value overflowed the type

I have an SSIS package. The source is a SQL query. The destination is a table. The package worked until I changed a column in a destination table from datetime to datetimeoffset(0). Now, all ...
6
votes
1answer
402 views

“TIMESTAMP WITH TIME ZONE” <--> DateTImeOffset mapping won't deliver the Zone part on INSERT commands (Entity Framework + Oracle)

I use EF (EDMX model - DB first) to map "TIMESTAMP WITH TIME ZONE" to a DateTimeOffset. when I commit the DateTimeOffset to Oracle, the Zone part is saved incorrectly. So if using the model, for ...
0
votes
1answer
855 views

DateTimeOffset proper usage

If I have a DateTime instance which represents a valid UTC time, and an offset that converts that DateTime to the time zone where it applies, how do I construct a DateTimeOffset instance to represent ...

1 2 3