Converting Joda LocalTime to java.sql.Date
date, java, jdbc, jodatime
Solution
It should be safe to use your technique because all the timezone issues will be taken into account by `LocalDate#toDate`. The resulting millisecond instant you have is context-independent: it uniquely relates to a timezone valid at that point in time within the locale you are using for conversion. In other words, if you repeat the conversion of the exact same millisecond value throughout a year, you will consistently get the exact same answer, even if timezone regulations change for your place in the meantime, since JDK refers to a database documenting the complete history of all timezone changes around the world.
When reasoning about these issues it is important to remember that your current timezone has no effect on the conversion, which is parameterized by your locale and resolves the timezone only within the context of the instant being converted.
I wholeheartedly sympathize with the queasiness you fell about all this: it is turning a simple and straigtforward operation into a complex maze of calculations which does nothing but invite trouble. Hopefully things will take a positive turn with Java 8 and its new (yes, again!) Date/Time API, based firmly on JodaTime.
Problem
To make a JDBC query I need to pass date to it. The date is kept in `Date` field type of PostgreSql database, which represents specific day without any time. As I need only date, I decided to use specific object which represent only date without time, which is `LocalDate` from Joda-Time package. I thought it is important because if I used DateTime object, it would carry redundant time data as well as it might lead to bugs at end of daylight saving time when the clock are put backward one hour (though the situation is unprecedentedly rare, it's not impossible). But when I started trying to square `LocalDate` object with accepted arguments of `preparedStatement.setDate` method, I didn't find a proper way to do it. `setDate` accepts `java.sql.Date` as parameter. And the only option to construct `java.sql.Date` object is to pass it time in milliseconds. But this defeats all the purpose of using `LocalDate` from Joda-Time package, as on this conversion we get back to milliseconds and, while these conversions happen, clock may be put back one hour and change the date to the previous date. So, now I have this line in my code: ``` preparedStatement.setDate(1, new java.sql.Date(localDate.toDate().getTime())); ``` But is this the best way to convert `LocalDate` to accepted by `setDate` format? Are my concerns related to daylight saving time and corresponding clock-shifts justified? Is there a better way to pass date (and only date without time) to JDBC preparedStatement?