SelectQueryMapper should support LocalDate
See original GitHub issueHaving a simple SQL:
SelectSeekStep1<Record4<Long, LocalDate, String, BigDecimal>, LocalDate> sql1 = dsl
.select(booking.ID, booking.BOOKING_DATE, booking.NAME, booking.VALUE)//
.from(booking)//
.orderBy(booking.BOOKING_DATE.desc());
JdbcMapper<Booking> testMapper = JdbcMapperFactory.newInstance()
.newMapper(Booking.class);
does deliver results with filled booking_date field, whereas
SelectQueryMapper<Booking> mapper = SelectQueryMapperFactory.newInstance().newMapper(Booking.class);
delivers an empty field.
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (8 by maintainers)
Top Results From Across the Web
Release v8.2.2 | SimpleFlatMapper
#710 SelectQueryMapper should support LocalDate. Reminder from 8.0.0. Intellij use wrong classifier Rewrote the release process to remove the classifier as ...
Read more >How to query JPA LocalDateTime field with a LocalDate value?
To convert the LocalDate parameter in LocalDateTime (but I assume in this case I will see only Objects created at the same exact...
Read more >Hibernate - Persist Java 8 LocalDate, LocalDateTime and ...
In this article, we will learn how to persist Java 8 LocalDate, ... One of the features added to Hibernate 5 is the...
Read more >Java Time Types - jOOQ
Users of Java 8 can now specify that the jOOQ code generator should prefer JSR 310 types over their equivalent JDBC types. This...
Read more >Error when trying to insert a record with a LocalDate field set ...
Sorry if it's not the right support channel for this question but I could not find another one which seemed like a better...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
that should be fixed in 8.2.2
will have a look thanks for the report