Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JDBC ResultSet getDate losing precision

I am losing precision in my ResultSet.getDate(x) calls. Basically:

rs = ps.executeQuery();
rs.getDate("MODIFIED");

is returning dates truncated to the day where MODIFIED is an Oracle TIMESTAMP field of default precision. I think there may be some JDBC tweak I'm missing; usually TIMESTAMP is compatible with DATE, but I'm hoping I don't have to redefine the entire table.

like image 752
orbfish Avatar asked Jul 16 '10 15:07

orbfish


2 Answers

ResultSet.getDate() returns a java.sql.Date, not a java.util.Date. It is defined to be a timeless date. If you want a timestamp, use ResultSet.getTimestamp()!

like image 81
Affe Avatar answered Oct 21 '22 14:10

Affe


You should use java.sql.Timestamp instead of java.sql.Date. You can use it as a java.util.Date object afterward if necessary.

rs = ps.executeQuery();
Timestamp timestamp = rs.getTimestamp("MODIFIED");

Hope this helps.

like image 35
dpatchery Avatar answered Oct 21 '22 12:10

dpatchery