Can anyone provide any input on this error. I am trying to insert into table using Objective C.
While I am doing this, I am getting an error SQLite Busy. Why this is
In my case, I had forgotten to close database after using it. Following fixed mine:
sqlite3_finalize(statement); sqlite3_close(contactDB);
FMDB can also alleviate these headaches from you easily.