Derek Honeybun
Total Post:17
Points:119I want to insert value where value is not present in database table,
problem in this code:
INSERT INTO table (...)
VALUES (...)
WHERE NOT EXISTS (...)
exists using Sqlite3?
EDIT:
INSERT OR IGNORE
Is not working in my case
Post:214
Points:1642Re: Problem in inserting value where not exist in database:
you can use this method to check the value is exist in database or not.
I hope it will be helpful for you: