bulkInsert method
Implementation
Future<Result<int>> bulkInsert(
String connectionId,
String table,
List<String> columns,
List<int> dataBuffer,
int rowCount,
) =>
_repository.bulkInsert(
connectionId,
table,
columns,
dataBuffer,
rowCount,
);