As you might know ms access stores it's date as a date + time, so does java, escept sql does not seem to support this (when writing data from java to access one must use SQL statements) because if I write a time value, only the time gets set, date gets set to 1970 (zero digits for that value) and when I write a date value only the date gets set, and at midnight, (time all zero digits)
am I forced to split this up in two fields ?, because java stores the time as a millisecond value since 1970 this would greatly hinder my way to calculate the passed time.
a tought crossed my mind however, is it possible to perform two sets, one set date, and another set time, will those two overwite eachother ?
if not i'll just have to rewrite my functions to supply a calendar argument.
thanks in advance.
am I forced to split this up in two fields ?, because java stores the time as a millisecond value since 1970 this would greatly hinder my way to calculate the passed time.
a tought crossed my mind however, is it possible to perform two sets, one set date, and another set time, will those two overwite eachother ?
if not i'll just have to rewrite my functions to supply a calendar argument.
thanks in advance.