I am developing an application using Java (J2SE).
I need to save a time database in a database (e.g. 16:30:12).
When I need to save a date (or date + time), I convert it to a Unix timestamp, and I store it as a Long number.
But when I only need time, not date and time, what is the best way to save it?
I use SQLite and MS Access as a DBMS.
thanks
source share