| Author |
java.sql.Date and Oracle.
|
Alok Pota
Ranch Hand
Joined: Mar 07, 2001
Posts: 185
|
|
I need to able to insert date & time values in a DATE column of an Oracle table. The following code java.util.Date utilDate = new java.util.Date(); java.sql.Date sqlDate = new java.sql.Date(utilDate.getTime()); stmt.setDate(1, sqlDate); sets the date in the column alright but the TIME is missing. I need the value to be 8/31/2001 2:13:01 PM and not just 8/31/2001. I can't change the table columns as they are fixed. How do I go about inserting a date with its time in an Oracle DATE column from the Java layer? (Note: I don't want to use the Oracle sysdate() function)
|
 |
Yogen Vadnere
Ranch Hand
Joined: Sep 20, 2001
Posts: 58
|
|
Plz try following and let me know.. cst.setTimestamp(3, new Timestamp(System.currentTimeMillis()));
|
Yogen Vadnere
|
 |
 |
|
|
subject: java.sql.Date and Oracle.
|
|
|