How to use UpdateableRecord without code generation

2019-09-11 Thread Max Kremer
I'm trying to perform some simple CRUD operations with JPA annotated Pojos. I've run into the need of returning the generated id (Identity columns) for records that are inserted. Seems that the best way to do this is with UpdateableRecord To date we've been using CustomRecord and its hasn't

Re: Custom Validator on Fields in Jooq Entities

2019-09-11 Thread Lukas Eder
Hi Charith, Thank you very much for your message. In jOOQ, the most appropriate way to implement this kind of functionality would be to use a custom data type converter, which converts your bind variables of some HTML type to a string, and back to that HTML type:

Custom Validator on Fields in Jooq Entities

2019-09-11 Thread Charith Chowdary K P
Hi, Is it possible to add a hibernate validator or a custom validator to a specific column of a table using Jooq. The entities are generated via CodeGen. for ex. A certain field is only supposed to have safe html tags. (