On Thursday, April 26, 2012 1:24:38 AM UTC-5, Lukas Eder wrote: > > Hi Ian, > > > 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? > > No. But that is a very nice idea > > > Is there some other recommended way to do a large number of > inserts/updates? > > Right now, you'll probably have to hande batch inserts/update > yourself, using the Factory.batch() method >
One of the nice things about .store() is that it decides whether to insert or update automatically, is this possible using a syntax that is compatible with .batch()? Ian.
