Skip to content
Advertisement

JDBC ResultSet: I need a getDateTime, but there is only getDate and getTimeStamp

I would like to get the DATETIME column from an Oracle DB Table with JDBC. Here is my code:

JavaScript

I have to identify the column type first. The field I am interested in is recognized as a Types.DATE, but it is really a DATETIME in the DB since it has this format: “07.05.2009 13:49:32”

getDate truncates the time: “07.05.2009” and getString appends “.0” to it: “07.05.2009 13:49:32.0”

Of course I could just remove the final .0 and work with getString all the time, but it is a dirty workaround.

Any ideas? I was looking for a getDateTime method.

Advertisement

Answer

This answer is outdated. Continue to Basil Bourque’s answer.

JavaScript

Then format it the way you like.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement