batchedInsertOrReplace abstract method

List<Statement> batchedInsertOrReplace(
  1. QualifiedTablename table,
  2. List<String> columns,
  3. List<Map<String, Object?>> records,
  4. List<String> conflictCols,
  5. List<String> updateCols,
  6. int maxSqlParameters,
)

Inserts a batch of rows into a table, replacing them if they already exist.

Implementation

List<Statement> batchedInsertOrReplace(
  QualifiedTablename table,
  List<String> columns,
  List<Map<String, Object?>> records,
  List<String> conflictCols,
  List<String> updateCols,
  int maxSqlParameters,
);