Alexander Black
05/16/2022, 7:33 PMINSERT OR REPLACE INTO (id, ...) VALUES(?, ...)
operation? So if I had a null id passed in for the primary key… it makes sense, but I’m not passing in a null. Any advice would be helpful.Alexander Black
05/16/2022, 7:34 PMCREATE TABLE `User`(
`id` INTEGER PRIMARY KEY AUTOINCREMENT, ...)
Alexander Black
05/16/2022, 7:35 PMinsert:
INSERT OR REPLACE INTO User (id, ...) VALUES (?, ...)
Alexander Black
05/16/2022, 7:35 PMAlexander Black
05/16/2022, 7:36 PMAlexander Black
05/16/2022, 7:37 PMAlexander Black
05/16/2022, 7:51 PMkpgalligan
05/16/2022, 10:56 PMAlexander Black
05/16/2022, 10:58 PMAlexander Black
05/16/2022, 10:59 PMAlexander Black
05/16/2022, 10:59 PMkpgalligan
05/17/2022, 7:28 PMAlexander Black
05/20/2022, 9:53 PM