bulkInsertParallel method
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,
);