|
I expect the following support/mapping for Oracle: 1) DATE - LocalDate and LocalDateTime (no timezone handling, raw date/time must be transferred in both directions) 2) TIMESTAMP - LocalDateTime (no timezone handling, raw date/time must be transferred in both directions) 3) TIMESTAMP WITH TIME ZONE - OffsetDateTime (timezone is preserved, timezone must be transferred in both directions) 4) TIMESTAMP WITH LOCAL TIME ZONE - OffsetDateTime (java object gets jvm default timezone)
|