SQLite Exception: SQLite Busy

前端 未结 5 1877
青春惊慌失措
青春惊慌失措 2020-11-27 22:40

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

5条回答
  •  春和景丽
    2020-11-27 23:26

    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

提交回复
热议问题