Re: [REQUEST FOR FEEDBACK]: What small but incredibly useful utility are you missing the most in jOOQ?

2016-10-28 Thread Max Kremer
I just have to say that JOOQ is AWESOME! We've been using it for about 2.5 years now and it's really a joy to work with. Its a big library and has its learning curve but it crushes every ORM (or any other lib that wraps JDBC) out there. Once you get the "JOOQ Way" of doing things it makes for

Support for Postgresql ESCAPE keyword for use with LIKE

2016-10-28 Thread Max Kremer
Postgres supports setting an escape character as part of the query when using the LIKE predicate. Is there any support for this in JOOQ? >From the docs: https://www.postgresql.org/docs/9.5/static/functions-matching.html string LIKE pattern [ESCAPE escape-character] -- You received this