bulkInsertParallel method

  1. @override
Future<Result<int>> bulkInsertParallel(
  1. int poolId,
  2. String table,
  3. List<String> columns,
  4. List<int> dataBuffer,
  5. int rowCount, {
  6. int parallelism = 0,
})
override

Implementation

@override
Future<Result<int>> bulkInsertParallel(
  int poolId,
  String table,
  List<String> columns,
  List<int> dataBuffer,
  int rowCount, {
  int parallelism = 0,
}) async {
  return _repository.bulkInsertParallel(
    poolId,
    table,
    columns,
    dataBuffer,
    rowCount,
    parallelism: parallelism,
  );
}