vote up 1 vote down star
1

Hi there,

I was wondering, is there a way to create a timestamp in c# from a datetime? I need a millisecond precision value that also works in Compact Framework(saying that since DateTime.ToBinary() does not exist in CF).

My problem is that i want to store this value in a database agnostic way so i can sortby it later and find out which value is greater from another etc.

flag

75% accept rate

2 Answers

vote up 5 vote down check

I always use something like the following:

private String GetTimestamp(DateTime value) {
    return value.ToString("yyyyMMddHHmmssffff");
}

This will give you a string like 200905211035131468, as the string goes from highest order bits of the timestamp to lowest order simple string sorting in your SQL queries can be used to order by date if you're sticking values in a database

link|flag
How come you get 21 months and only get 12? :) – PaulB May 21 at 12:48
mistype on my part, corrected now – RobV May 21 at 13:30
The token for year should be lowercase here: return value.ToString("yyyyMMddHHmmssffff"); – Don Cote Nov 2 at 21:18
good catch, corrected now, thanks – RobV Nov 3 at 14:30
vote up 3 vote down

You could use the DateTime.Ticks property, which is a long and universal storable, always increasing and usable on the compact framework as well. Just make sure your code isn't used after December 31st 9999 ;)

link|flag
hmmm interesting, i ll try it out. – Konstantinos May 21 at 9:35
When you say "always increasing" - there's no guarantee that two calls to DateTime.UtcNow.Ticks will give different values though, is there? In other words you still need some caution before you use it as a unique timestamp. – Jon Skeet May 21 at 9:38
actually i just used it and i have duplicate values at some points. – Konstantinos May 21 at 9:46
@Jon: with always increasing I meant: it's not a tickcount which flips every 48 days or so, it's a real tick count which increases over time, so a higher value is always a later timestamp. – Frans Bouma May 21 at 11:03
1  
@Konstantinos: you can't avoid duplicates if you use timestamps. Timestamps aren't used for unique keys, but for marking a time. You said you needed millisecond precision, and ticks has 100ns precision. The thing is that you will have duplicates. If you don't want that you need a unique sequence in the DB, which is unfortunately not db agnostic. – Frans Bouma May 21 at 11:05
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.