| @NotNull Batch | DSLContext. batch(String... queries) | Create a batch statement to execute a set of queries in batch mode
 (without bind values). | 
| @NotNull Batch | DSLContext. batch(String sql,
     Object[]... bindings) | Create a batch statement to execute a set of queries in batch mode (with
 bind values). | 
| @NotNull Batch | DSLContext. batch(Collection<? extends Query> queries) | Create a batch statement to execute a set of queries in batch mode
 (without bind values). | 
| @NotNull Batch | DSLContext. batch(Queries queries) | Create a batch statement to execute a set of queries in batch mode
 (without bind values). | 
| @NotNull Batch | DSLContext. batch(Query... queries) | Create a batch statement to execute a set of queries in batch mode
 (without bind values). | 
| @NotNull Batch | DSLContext. batch(Query query,
     Object[]... bindings) | Create a batch statement to execute a set of queries in batch mode (with
 bind values). | 
| @NotNull Batch | DSLContext. batchDelete(Collection<? extends UpdatableRecord<?>> records) | Create a batch statement to execute a set of  DELETE queries
 in batch mode (with bind values) according to
  UpdatableRecord.delete() sematics. | 
| @NotNull Batch | DSLContext. batchDelete(UpdatableRecord<?>... records) | Create a batch statement to execute a set of  DELETE queries
 in batch mode (with bind values) according to
  UpdatableRecord.delete() sematics. | 
| @NotNull Batch | DSLContext. batchInsert(Collection<? extends TableRecord<?>> records) | Create a batch statement to execute a set of  INSERT queries
 in batch mode (with bind values) according to
  TableRecord.insert() semantics. | 
| @NotNull Batch | DSLContext. batchInsert(TableRecord<?>... records) | Create a batch statement to execute a set of  INSERT queries
 in batch mode (with bind values) according to
  TableRecord.insert() semantics. | 
| @NotNull Batch | DSLContext. batchMerge(Collection<? extends UpdatableRecord<?>> records) | Create a batch statement to execute a set of  MERGE queries
 in batch mode (with bind values) according to
  UpdatableRecord.merge() semantics. | 
| @NotNull Batch | DSLContext. batchMerge(UpdatableRecord<?>... records) | Create a batch statement to execute a set of  MERGE queries
 in batch mode (with bind values) according to
  UpdatableRecord.merge() semantics. | 
| @NotNull Batch | DSLContext. batchStore(Collection<? extends UpdatableRecord<?>> records) | Create a batch statement to execute a set of  INSERT and
  UPDATE queries in batch mode (with bind values) according to
  UpdatableRecord.store() semantics. | 
| @NotNull Batch | DSLContext. batchStore(UpdatableRecord<?>... records) | Create a batch statement to execute a set of  INSERT and
  UPDATE queries in batch mode (with bind values) according to
  UpdatableRecord.store() semantics. | 
| @NotNull Batch | DSLContext. batchUpdate(Collection<? extends UpdatableRecord<?>> records) | Create a batch statement to execute a set of  UPDATE queries
 in batch mode (with bind values) according to
  UpdatableRecord.update() semantics. | 
| @NotNull Batch | DSLContext. batchUpdate(UpdatableRecord<?>... records) | Create a batch statement to execute a set of  UPDATE queries
 in batch mode (with bind values) according to
  UpdatableRecord.update() semantics. |