Is it normal to get SQLITE_BUSY on a read only database?

Posted by dicroce on Stack Overflow See other posts from Stack Overflow or by dicroce
Published on 2010-05-20T23:26:38Z Indexed on 2010/05/20 23:30 UTC
Read the original article Hit count: 157

Filed under:
|
|

I have 2 processes: 1 is writing to a sqlite database, 1 is reading from the same database. Occasioally, I get SQLITE_BUSY on my selects. Is this normal? Is their some option or way I could open the database so that it blocks until it CAN complete the query? (I tried the FULLMUTEX option on the open call but it appeared to have no effect).

© Stack Overflow or respective owner

Related posts about sqlite

Related posts about c