I'm developing an application using Java (J2SE).
I need to store a Time in database (e.g. 16:30:12).
When I need to store date (Or date+time) I convert it to Unix timestamp and I store it as a Long number.
But When i need only the Time and not the Date and Time what is the best way to store it?
I'm Using SQLite and MS Access as DBMS.

Thanks

link|improve this question

60% accept rate
feedback

2 Answers

up vote 1 down vote accepted

It's ok to store time as time-in-milliseconds from null-date (January 1, 1970, 00:00:00 GMT). You will be able easily made compare operations on this long data field in the DB.

link|improve this answer
feedback

You can store as a normal String

SimpleDateFormat sdf = new SimpleDateFormat("hh:mm:ss");
String time = sdf.format(Calendar.getInstance());
link|improve this answer
Not a good idea if you plan on using the time in any sort of calculation. – cmmi Dec 5 '11 at 11:16
feedback

Your Answer

 
or
required, but never shown

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