I have DATE column in db - when select it through PL/SQL Developer I can see real whole date?as is is stored in database. When I debug my jdbc template class I can see that everything including date is read as an object: Object obj = cursor.getObject(ii + 1); from ResultSet According to JDBC spec the implicit conversion from Oracle DATE type takes place and we get java.util.Date. Everything worked good until one day Oracle updated its driver and now I can see that he deletes the time of the date. The day comes OK. But the time is midnight. Did anyone of you faced the issue?
Thx in advance.