I'm using Record.store() on a large number of records (several thousand), some of them will be inserted, and some of them updated, depending on whether they are already present.
Unfortunately this is a slow process, with a DB round-trip for every record. I note that Jooq does support JDBC batch processing, but it's not clear whether .store() can be used in some kind of batch mode. Can it? Is there some other recommended way to do a large number of inserts/updates? Thanks, Ian. -- Ian Clarke Blog: http://blog.locut.us/
