On Tuesday, September 15, 2015 at 9:16:57 AM UTC-4, Lukas Eder wrote: > > > >> Then I turned debug logging back on and noticed that with bulkAll() it >> was still logging 80k individual debug inserts. >> > > Are you sure? bulkAll() should just generate one huge INSERT statement. Do > you still have the source code to reproduce this? > > You are right, I must have been running the wrong code when I ran my original test. I just retested with bulkAll() and I get an error now which is not surprising since it would be a single insert statement with 80,000 rows!
Caused by: java.io.IOException: Tried to send an out-of-range integer as a 2-byte value: 1764906 Seems like the JDBC request has to be under 64K :-) bulkAfter() is what we needed and it is working great, thanks! -- You received this message because you are subscribed to the Google Groups "jOOQ User Group" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
