How can I explicitly set the time zone H2 should use? Now it gets the timezone to use from the underlying OS. I would assume there existed an extra parameter I would add to
You can manipulate the JVM time zone, before interacting with the database:
TimeZone.setDefault(TimeZone.getTimeZone("UTC"))
Unfortunately, H2 does not support time zone per connection... yet.