bulkInsertParallel method

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

Performs parallel bulk insert through poolId.

Uses pool-managed parallel workers in Rust. Returns rows inserted on success, or negative value on failure.

Implementation

@override
int bulkInsertParallel(
  int poolId,
  String table,
  List<String> columns,
  Uint8List dataBuffer,
  int parallelism,
) =>
    _native.bulkInsertParallel(
      poolId,
      table,
      columns,
      dataBuffer,
      parallelism,
    );