0

I have a column in oracle in time stamp format, it has a value like this 05-MAY-17 11.01.17.939951000 AM. when my java code picks that roe and when I do a ResultSet.getString("coulmn name"), I am getting value like this 2017-05-05 11:01:17.939. is there a way I can get full value for that field.

Ranjith Reddy
  • 183
  • 2
  • 12

1 Answers1

0

How to print time up to 6 digits of precision for seconds value

The last answer on the page shows a solution that goes up to 9 values for the seconds. This might help you.

Community
  • 1
  • 1
Jenny Holder
  • 63
  • 1
  • 11