Tagged Questions

4
votes
11answers
7k views

C++ obtaining milliseconds time on linux — clock() doesn’t seem to work properly

on windows, clock() returns the time in milliseconds, but on this linux box I'm working on, it rounds it to the nearest 1000 so the precision is only to the "second" level and not …
4
votes
4answers
1k views

Lua - Current time in milliseconds

Hi, another Lua question: Is there a common way to get the current time in or with milliseconds? There is os.time(), but it only provides full seconds.
2
votes
1answer
97 views

Is it possible to change the base millisecond refrence time 1970 to 2008 in java (like JSR-310)

I want to be able to change the base millisecond reference from 1970 to 2008 in java so that I can save space in the database and unique Ids. Preferably with Joda-Time. The upcom …
2
votes
1answer
144 views

VBA - show clock time with accuracy of less than a second

Is there a way to use VBA (excel) to generate a clock time with accuracy to a tenth of a second or less? eg: Sub test() MsgBox Format(Time, "hh:mm:ss???") 'not sure what this …
2
votes
4answers
1k views

How to get a DateDiff-Value in milliseconds in VBA (Excel) ?

I need to calculate the difference between two timestamps in milliseconds. Unfortunatley, the DateDiff-function of VBA does not offer this precision. Are there any workarounds? Th …
2
votes
1answer
449 views

How do I create a datetime in Python from milliseconds?

I can create a similar Date object in Java by java.util.Date(milliseconds). How do I create the comparable in Python?
1
vote
4answers
517 views

ASP: convert milliseconds to date

I need to convert a field with milliseconds created by PHP app to a date value. Is there a way to do this using vbcript? or convert to datetime in SQL 2005 Example: 1113192000 to …
0
votes
1answer
77 views

System.currentTimeMillis() returns always 0 on Motorola Droid

The call to System.currentTimeMillis() returns always 0 on Motorola Droid, Android 2.0. There is no mentioning in changes to System in the API differences between 2.0 and 1.5, so …
0
votes
3answers
150 views

Oracle cast(timestamp as date)

I see incosistency in Oracle. The inconsistensy is between the way INSERT timestamp data_type value into DATE data_type column works compared to the way CAST(timestamp as DATE) wor …
0
votes
2answers
46 views

How to store fractions of a second in mysql

Hey, I would like to store time data accurate to the centisecond. The mySQL manual states that all stored values will be rounded. I see two decent options. The time above the d …
0
votes
2answers
106 views

A better way to construct a datetime with higher precision than milliseconds

I have just gone through an unexpectedly convoluted process to define datetimes. The underlying data has a better precision than milliseconds. I ended up constructing an intermed …
0
votes
3answers
170 views

Date vs Milliseconds | for scalablility, saving, searching and obtaining time in Java + MySQL(or other Db’s)

Which is the most beneficial in Java and a DB for DateTime? (Using JodaTime as Date) (DateTime object (Java) + TIMESTAMP (DB) ) VS (Milliseconds long (Java) + BIGINT(DB) for the …
0
votes
3answers
113 views

SAS informat datetime milliseconds

Can SAS store and use datetimes that contain fractions of less than 1/10th of a second? eg: data _null_; input @1 from_dt:datetime22.; put from_dt= ; cards; 24Sep2009:11:21 …
0
votes
4answers
226 views

How do I get elapsed time in milliseconds in Ruby?

If I have a Time object got from : Time.now and later I instantiate another object with that same line, how can I see how many milliseconds have passed? The second object may be …
0
votes
4answers
255 views

How do I get millis since midnight UTC in C?

The time function in time.h gives millis since the epoch.

1 2 next
15 30 50 per page