Open
Description
Issues are used to track bugs and feature requests.
Need help or have a general question? Ask on Stack Overflow (tag sqlite.swift).
Build Information
Using SQLite.swift (0.11.5) using CocoaPods
Using Xcode 9.3
General guidelines
I can insert Codable objects fine using the below syntax:
try db.run(codableObject)
How do I define what to do with a conflict?
With non-Codable objects, I do:
try db.run(table.insert(or: OnConflict.replace, id <- tile.id))