ConflictResolution
public enum ConflictResolution : String
An SQLite conflict resolution.
-
The
ROLLBACK
conflict resolutionDeclaration
Swift
case rollback = "ROLLBACK"
-
The
ABORT
conflict resolutionDeclaration
Swift
case abort = "ABORT"
-
The
FAIL
conflict resolutionDeclaration
Swift
case fail = "FAIL"
-
The
IGNORE
conflict resolutionDeclaration
Swift
case ignore = "IGNORE"
-
The
REPLACE
conflict resolutionDeclaration
Swift
case replace = "REPLACE"