I have two processes:

  1. Writes to two tables every second (ish)
  2. Reads from said tables periodically

I know that with SQLite, any writes lock the whole database and so sometimes the second process can fail with a locked database.

Is there anything you can suggest that would completely remove the need for these two processes to touch the same database? For example, could I atomically transfer the data from the database being written to a second read-only database?

Thanks :)

link|improve this question

62% accept rate
Writing to a read-only database? Sir, I believe that is an oxymoron. Why, if I may, does this need to be threaded? – MPelletier Feb 25 '10 at 2:35
Yeah, I guess that was kind of silly :) I meant read-only to the second process. This is not threaded, but has multiple OS-level processes. One is a background service, the other is the UI. – cheez Feb 25 '10 at 5:25
feedback

2 Answers

up vote 2 down vote accepted

You can configure the connection to the database in the second process to wait for a certain time when it encounters a busy database, waking up periodically to check for a free database, before giving up.

sqlite3_busy_timeout(sqlite3*, int ms);

http://www.sqlite.org/c3ref/busy_timeout.html

link|improve this answer
Ah, this seems like the right thing to do. It is what I implemented in any case but would be good to have sqlite manage it instead. – cheez Feb 25 '10 at 5:23
Hmm, I read the documentation but I don't get it. It seems to say that the busy handler will just sleep for the specified time and then return 0. Doesn't seem to say that it will retry... Confusing to say the least. – cheez Feb 25 '10 at 5:31
Oh, I understand! A busy handler returns 1 to try again, 0 to fail. – cheez Feb 25 '10 at 5:33
feedback

May I suggest reading the FAQ on SQLite thread safety?

Threads are evil. Avoid them.

SQLite is threadsafe. We make this concession since many users choose to ignore the advice given in the previous paragraph. But in order to be thread-safe, SQLite must be compiled with the SQLITE_THREADSAFE preprocessor macro set to 1.

link|improve this answer
Sure, but in this case it's multiple processes not threads. One is a background service, the other is a UI. – cheez Feb 25 '10 at 4:51
Well, ok then. :) There might be a wrapper that has that already, but it might be cleaner to go with ravenspoint's solution. – MPelletier Feb 25 '10 at 15:11
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.