Oleksandr Gula
Results
1
comments of
Oleksandr Gula
Hi, @stevenschlansker and @ngeor, I stumbled over the same problem recently and used similar solution ``` jdbi.registerColumnMapper(LocalDate.class, (rs, col, ctx) -> { final Date date = rs.getDate(col); return date ==...