insertOrReplaceWith abstract method
Insert a row into a table.
If it already exists we update the provided columns updateCols
with the provided values updateVals
Implementation
Statement insertOrReplaceWith(
QualifiedTablename table,
List<String> columns,
List<Object?> values,
List<String> conflictCols,
List<String> updateCols,
List<Object?> updateVals,
);