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