SQLite as an App Queue, Exclusive Row Lock?
- by ScSub
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!