How do I wrap brackets around parameter values when using jOOq?
3 I am using jOOq to write queries except I am using a vendor specific type of SQL... to be specific flexible search. The main difference between SQL and flexiSearch is that parameter values are enclosed in a curly bracket. e.g. SELECT * FROM Product WHERE code LIKE ‘%al%’ So what I'm trying to do is to get jOOq to automatically intercept the query building procedure to include the brackets. Looking through the docs, it seems that I should implement some kind of execute listener? But I am not sure what to do after that. Thanks java sql jooq hybris flexible-search share | improve this question edited Nov 13 '18 at 9:59 Lukas Eder 135k 72 439 969 asked Nov 12 '18 at 15:03 user1272052 user1272052 26 3 Also, you need to- 1. Put curly braces around tables and their joins. 2. Apply double curly braces around subquery. to ensure the queries format match. – Farrukh Chishti Nov 13 '18 at 10:00 add a com