posted 20 years ago
I created a java.sql.Date object in following way and insurted it in my_table
Date d = new Date(System.System.currentTimeMillis());
When I use SQL+ to check, I found that no hour, minute, and second info:
SQL> select TO_CHAR(my_dt, 'mm-dd-yyyy hh24:mi:ss') as My_dt from my_table;
MY_DT
-------------------
08-24-2004 00:00:00
08-24-2004 00:00:00
08-24-2004 00:00:00
08-24-2004 00:00:00
08-24-2004 00:00:00
Could anyone tell me why? I'm using Oracle. Thanks!