11g . getString() :
oracle.sql.TIMESTAMPTZ.toString(int year, int month, int day, int hours, int minutes, int seconds, int nanos, String regionName)
oracle.jdbc.driver.DateAccessor.getString() nanos = -1, "yyyy-mm-dd HH: MM: SS"
"yyyy-mm-dd HH: MM: SS.S". 9 .
: 10 11 :
10.2.0.5.0
select a DATE value and use getString to read it
2009-04-20 00:00:00.0
select a TIMESTAMP value and use getString to read it
2010-10-15.10.16. 16. 709928000
11.2.0.2.0
select a DATE value and use getString to read it
2009-04-20 00:00:00
select a TIMESTAMP value and use getString to read it
2010-10-15 10:16:16.709928
Can your environments use different versions of Oracle JDBC drivers?
source
share