I have a singleton SQLiteOpenHelper
object which I will be using all over the application. I tried performing read
and write
tasks in parallel from different threads with singleton database helper object but I didn't see any DataBaseLockException
or DataBaseBusyException
.
Does android perform any in-built locking mechanism for all database operations?