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

2017-10-18 Thread alamothe
Super small request Can you please add *isFetched()* convenience method to a Record? Currently this field is private and cannot be read Thanks for the great work! On Wednesday, July 6, 2016 at 5:16:44 AM UTC-7, Lukas Eder wrote: > > Dear group, > > Part of jOOQ's success is its incredible

Update only when modified

2017-10-18 Thread alamothe
Hi, I am updating a bunch of records in the DB like this: // fetch a bunch of records records = ... for (Record r : records) { // update logic r.store(); } I hoped the UPDATE statement would be issued only if the record is modified. However, it is issued every time a record