posted 18 years ago
Hi all
Actually, oracle stores time info in the DATE type. Its just that how to get it. I use following convention,
If the column name is - start_time (for something) then I run query like,
"select to_char(start_time,'mm/dd/yyyy hh:mm AM') as StartTime from myTable";
and then do rs.getString("StartTime"); and format the date with something like,
The code above is specific to my case but still you get the idea you know...
Regards
Maulin