bulkInsertParallel abstract method

int bulkInsertParallel(
  1. int poolId,
  2. String table,
  3. List<String> columns,
  4. Uint8List dataBuffer,
  5. int parallelism,
)

Performs parallel bulk insert using a pool.

poolId must be a valid pool identifier. dataBuffer must be generated by BulkInsertBuilder.build(). parallelism must be >= 1. Returns inserted row count, or negative value on error.

Implementation

int bulkInsertParallel(
  int poolId,
  String table,
  List<String> columns,
  Uint8List dataBuffer,
  int parallelism,
);