SQLite as an App Queue, Exclusive Row Lock?

Posted by ScSub on Stack Overflow See other posts from Stack Overflow or by ScSub
Published on 2010-03-16T18:37:27Z Indexed on 2010/03/16 18:41 UTC
Read the original article Hit count: 327

Filed under:
|
|
|

I am considering using SQLite as a "job queue container", and was wondering how I could do so, using custom C# (with ADO.NET) to work the database.

If this was SQL Server, I would setup a serializable transaction to make sure the parent row and child rows were exclusively mine until I was done. I'm not sure how that would work in SQLite, can anyone offer any assistance?

Or if there are any other existing implementations of message queueing with SQLite, I'd appreciate any pointers in that direction as well.

Thanks!

© Stack Overflow or respective owner

Related posts about sqlite

Related posts about queue