SQLite Exception: SQLite Busy

exception, iphone, objective-c, sqlite

Solution

If I get it right, "busy" means that you cannot obtain a lock. Seems that some another process (or thread, etc) has a lock on a database.

File Locking And Concurrency In SQLite Version 3

Problem

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 happening?

Original source