Not sure, but
think about it in terms of JDBC and your database.
if you created a java-jdbc test routine that opened up a ResultSet
and you called
rs.getDate("JDT");
and you JDT col was a number would it convert to java.sql.Date?
so, I think Julian date is milliseconds since January 1, 1970, 00:00:00 GMT ..right? if so, then it should work - since java.sql.Date has a constructor w/ milliseconds as argument.
_________________ -JT
If you find my replies helpful, please rate by clicking 'Y' on them. I appreciate it.
|