Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

int nRet = sqlite3_open(szFile, &mpDB);

if (nRet != SQLITE_OK)
{

}

setBusyTimeout(mnBusyTimeoutMs);

   sqlite3_exec(mpDB, "Begin Transaction;", 0, 0, &szError);
  sqlite3_exec(mpDB, "UPDATE query", 0, 0, &szError);//some update table query
sqlite3_exec(mpDB, "Commit Transaction;", 0, 0, &szError);///Here it gives error database is locked

Above code works fine for insert command instead of update command.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
226 views
Welcome To Ask or Share your Answers For Others

1 Answer

Do you have that file opened in some sql editor, in the same time? I've recently used program called "SQLite database browser" and it locked my whole sqlite database, it took me some time to find out what the hell is going on.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...