Class BatchQuery

java.lang.Object
com.github.darksoulq.abyssallib.common.database.relational.AbstractBatchQuery<BatchQuery>
com.github.darksoulq.abyssallib.common.database.relational.sql.BatchQuery

public class BatchQuery extends AbstractBatchQuery<BatchQuery>
A SQLite-specific implementation of AbstractBatchQuery. This class provides the necessary SQL verbs for batch operations compatible with SQLite syntax.
  • Constructor Details

    • BatchQuery

      public BatchQuery(Connection connection, String table, ExecutorService asyncPool, String... columns)
      Constructs a new BatchQuery for SQLite.
      Parameters:
      connection - The JDBC Connection to the SQLite database.
      table - The name of the target table.
      asyncPool - The ExecutorService used for asynchronous execution.
      columns - The specific column names to be included in the batch operation.