MySQL mentioned in your question on StackOverflow doesn't have the TIMESTAMP 
WITH TIME ZONE data type. It means your application uses different data 
types with different database systems.

JDBC drivers by default return TIMESTAMP values as java.sql.Timestamp 
(R2DBC returns them as java.time.LocalDateTime).

Both JDBC and R2DBC drivers return TIMESTAMP WITH TIME ZONE values as 
java.time.OffsetDateTime.

spring-data-commons is able to convert LocalDateTime to Instant, but it 
doesn't have a built-in converter from OffsetDateTime to Instant.

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to h2-database+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/h2-database/7ea3c19b-1c56-4148-a690-b9d2b66520aen%40googlegroups.com.

Reply via email to