Timezones and daylight savings time
When using JDBC to query TimeTZ and TimestampTZ values, the JVM and session timezones must match to get accurate results.
When building Java applications that query TimeTZ and TimestampTZ values, the JVM and session must use the same timezone to get accurate results. In particular, the CURRENT_TIME and CURRENT_TIMESTAMP functions can return different values if the following conditions are met:
- The JVM and session timezones are different
- One of the timezones is one where daylight savings time is in effect
The following example demonstrates how to query for the current timestamp:
- The
run()
method sets the JVM timezone toUS/Eastern
. US/Eastern
is then passed to thegetConnection()
method, which sets the session timezone.- The
printCurrentTimeAndTimeStamp()
method executes the CURRENT_TIME and CURRENT_TIMESTAMP functions, which return TimeTZ and TimestampTZ, respectively. These values should match because the JVM and session use the same timezone.