On 6/13/07, Andrew Roark <[EMAIL PROTECTED]> wrote:
My question: how well does sqlite handle one database file being accessed by multiple processes?
Very well, so far. You'll want to make sure you use an appropriate locking (transaction) strategy, and accomodate SQLITE_BUSY even when you think it can't happen. :) --andy