vote up 1 vote down star

Hello,

I am working with JDBC and MySQL. I have a date column that I need included in my result set. Unfortunately, I cannot find a class in Java to retrieve the date. The SQL Date class is deprecated. How do you get Date objects from a result set?

flag

3 Answers

vote up 12 vote down check

You use java.sql.Date. A constructor and some methods are deprecated. The class isn't. Confused by this versus, say, java.util.Date or java.util.Calendar? Look at Making Sense of Java's Dates.

There are three JDBC date/time types:

The confusion probably arises from the fact that java.sql.Date extends java.util.Date and thus inherits its deprecated methods.

Just use the right type for the type of your column.

link|flag
short and to the point and very helpful. +1 – Jason S May 20 at 12:46
The problem is that the only constructor that remains is the one to create a date passing in millis. Also, all of its set and get methods that don't use millis are deprecated. Unless SQL returns the date in millis this seems kind of silly. – rmh15 May 20 at 12:55
Read the javadoc more closely, java.sql.Date conforms to the DATE JDBC type and the fields smaller than day are set to zero. The type is for use when you have a field that is day/month/year only and not, say, TIMESTAMP or TIME. What are you trying to do exactly? – cletus May 20 at 12:59
Oh that makes more sense thanks – rmh15 May 20 at 13:17
and don't forget that java.sql.Date is a subclass of java.util.Date (some more methods) – Carlos Heuberger May 20 at 18:26
vote up 3 vote down

I don't think the java.sql.Date class itself it deprecated, only one of its constructors. You should be safe to continue using it.

link|flag
vote up 1 vote down

You can safely use the java.sql.Date class to map your MySQL DATE type. The java.sql.Date class extends the java.util.Date class, so you can use this object to do all types of date calculations.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.