Marnick L'Eau

Results 90 comments of Marnick L'Eau

This sounds more like your database being set to the wrong jdbc string date parsing locale format than a Jdbi bug tbh. Jdbi will call `setString` or `setDate` in jdbc...

That is the right approach, yes. I have one myself that takes an enum key of queries that map to an ini file via a Spring service: ```java @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD)...

> I was trying to add the ORDER BY clause dynamically using parameter binding I don't think > order by ?; is supported by jdbc, so jdbi will bind it...

Everything handled and fixed: - release notes - dev guide about qualified factories and custom qualifiers - new methods on qualtyp and jdbicache - Qualified in core - tests tests...

some remarks handled

if the `?` in `SELECT distinct ? ||` is your target parameter for your `"aa"`, I suspect you'll need to `define` instead of `bind`. Or you can try with a...

Just to clarify: I suggested `defining` earlier because I assumed OP wanted to use `aa` as a column name, i.e. `select distinct aa from ...`, rather than as a value...

Maybe write a code sample of what you expect to do via JDBI's API?

This issue has come up a lot before, and our traditional response is that it's not Jdbi's concern. Jdbi is not a jdbc driver or database, it's an object mapper...

My personal, coarse 2 cents is that I don't see us providing timezone management out of the box until timezones become real first class citizens in both sql and jdbc,...