| Author |
difference between java.sql.time and java.sql.timestamp in java
|
reubin haz
Ranch Hand
Joined: May 12, 2005
Posts: 287
|
|
I have a DB table, with a column of type Time.
I'm wondering in the JDBC, should I use java.sql.Time or java.sql.Timestamp to save this column value?
Which one is better? Thanks.
|
SCJA, SCJP5.0, SCBCD, SCWCD
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 23182
|
|
Depends on what you want to save. If just time, java.sql.Time. If date and time, TimeStamp.
The database time type implies just time, but the exact meaning could vary based on the database.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Certs: SCEA Part 1, Part 2 & 3 & Core Spring 3
|
 |
 |
|
|
subject: difference between java.sql.time and java.sql.timestamp in java
|
|
|