bulkInsertParallel method

int bulkInsertParallel(
  1. String table,
  2. List<String> columns,
  3. Uint8List dataBuffer, {
  4. int parallelism = 2,
})

Performs parallel bulk insert using this pool.

Returns inserted row count on success, or negative value on failure.

Implementation

int bulkInsertParallel(
  String table,
  List<String> columns,
  Uint8List dataBuffer, {
  int parallelism = 2,
}) =>
    _backend.bulkInsertParallel(
      _poolId,
      table,
      columns,
      dataBuffer,
      parallelism,
    );