I have this query:
@db.execute("CREATE TABLE IF NOT EXISTS programs(programId INTEGER PRIMARY KEY NOT NULL
AUTOINCREMENT, programName TEXT NOT NULL, episodeName TEXT, UNIQUE(programName,
episodeName) ON CONFLICT IGNORE)")
Instead of ignoring this, what I'd like it to do is to insert the the data into a "Conflicts" table if there is a conflict in any one of my tables. How do I set up for this scenario? Obviously Id have to have the conflicts table created but what next?
Thanks