Available in versions: Dev (3.21) | Latest (3.20) | 3.19 | 3.18 | 3.17 | 3.16 | 3.15 | 3.14 | 3.13 | 3.12 | 3.11
The Loader API
Supported by ✅ Open Source Edition ✅ Express Edition ✅ Professional Edition ✅ Enterprise Edition
The loader API is implemented like any other DSL statement in jOOQ, following a few steps:
create.loadInto(TARGET_TABLE)
      .[options]
      .[source and source to target mapping]
      .[listeners]
      .[execution and error handling]
For example:
create.loadInto(BOOK)
      // Options
      .onDuplicateKeyError()
      .bulkAll()
      .batchAll()
      .commitAll()
      // Source and source to target mapping
      .loadCSV(inputStream)
      .fields(BOOK.ID, BOOK.AUTHOR_ID, BOOK.TITLE)
      // Listeners
      .onRow(ctx -> { /* ... */ })
      // Execution and error handling
      .execute()
      .errors()
      .forEach(e -> { /* ... */ });
See the following sections for details about each step:

 
        
Feedback
Do you have any feedback about this page? We'd love to hear it!