As per the JavaDoc of java.sql.Date
, it has only Date and not Time.
A thin wrapper around a millisecond value that allows JDBC to identify
this as an SQL DATE value. A milliseconds value represents the number
of milliseconds that have passed since January 1, 1970 00:00:00.000
GMT.
To conform with the definition of SQL DATE, the millisecond values
wrapped by a java.sql.Date instance must be 'normalized' by setting
the hours, minutes, seconds, and milliseconds to zero in the
particular time zone with which the instance is associated.
If you want the time also along with the date then you should be looking at java.sql.Timestamp
instead.
Here is the code snippet:
java.sql.Timestamp sqlDateTime = new java.sql.Timestamp(utilDate.getTime());