bulkInsertParallel method
Future<Result<int> >
bulkInsertParallel(
- int poolId,
- String table,
- List<
String> columns, - List<
int> dataBuffer, - int rowCount, {
- 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,
);
}