Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We are using AsyncTasks to access database tables and cursors.

Unfortunately we are seeing occasional exceptions regarding the database being locked.

E/SQLiteOpenHelper(15963): Couldn't open iviewnews.db for writing (will try read-only):
E/SQLiteOpenHelper(15963): android.database.sqlite.SQLiteException: database is locked
E/SQLiteOpenHelper(15963):  at     android.database.sqlite.SQLiteDatabase.native_setLocale(Native Method)
E/SQLiteOpenHelper(15963):  at     android.database.sqlite.SQLiteDatabase.setLocale(SQLiteDatabase.java:1637)
E/SQLiteOpenHelper(15963):  at     android.database.sqlite.SQLiteDatabase.<init>(SQLiteDatabase.java:1587)
E/SQLiteOpenHelper(15963):  at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:638)
E/SQLiteOpenHelper(15963):  at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:659)
E/SQLiteOpenHelper(15963):  at android.database.sqlite.SQLiteDatabase.openOrCreateDatabase(SQLiteDatabase.java:652)
E/SQLiteOpenHelper(15963):  at android.app.ApplicationContext.openOrCreateDatabase(ApplicationContext.java:482)
E/SQLiteOpenHelper(15963):  at android.content.ContextWrapper.openOrCreateDatabase(ContextWrapper.java:193)
E/SQLiteOpenHelper(15963):  at android.database.sqlite.SQLiteOpenHelper.getWritableDatabase(SQLiteOpenHelper.java:98)
E/SQLiteOpenHelper(15963):  at android.database.sqlite.SQLiteOpenHelper.getReadableDatabase(SQLiteOpenHelper.java:158)
E/SQLiteOpenHelper(15963):  at com.iview.android.widget.IViewNewsTopStoryWidget.initData(IViewNewsTopStoryWidget.java:73)
E/SQLiteOpenHelper(15963):  at com.iview.android.widget.IViewNewsTopStoryWidget.updateNewsWidgets(IViewNewsTopStoryWidget.java:121)
E/SQLiteOpenHelper(15963):  at com.iview.android.async.GetNewsTask.doInBackground(GetNewsTask.java:338)
E/SQLiteOpenHelper(15963):  at com.iview.android.async.GetNewsTask.doInBackground(GetNewsTask.java:1)
E/SQLiteOpenHelper(15963):  at android.os.AsyncTask$2.call(AsyncTask.java:185)
E/SQLiteOpenHelper(15963):  at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:256)
E/SQLiteOpenHelper(15963):  at java.util.concurrent.FutureTask.run(FutureTask.java:122)
E/SQLiteOpenHelper(15963):  at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:648)
E/SQLiteOpenHelper(15963):  at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:673)
E/SQLiteOpenHelper(15963):  at java.lang.Thread.run(Thread.java:1060)

Does anybody have a general example for code which writes to a database from a different thread than the one reading and how can we ensure thread safety.

One suggestion I've had is to use a ContentProvider, as this would handle the access of the database from multiple threads. I am going to look at this, but is this the recommended method of handling such a problem? It seems rather heavyweight considering we're talking about in front or behind.

share|improve this question

6 Answers

up vote 21 down vote accepted

We used a ContentProvider in the end. This appeared to clear up the problems.

share|improve this answer
34  
The reason a ContentProvider solves the problem is because it usually uses one single SQLiteOpenHelper which means that there is only one connection to the database and the underlying SQLiteDatabase takes care of the locking. You don't need a ContentProvider - just make sure you don't write to the DB using 2 different db connections. This article explains how locking works on Android. kagii.squarespace.com/journal/2010/9/10/… – Jan Berkel May 30 '11 at 11:22
6  
Updated link to the article: kagii.com/post/6828016869/android-sqlite-locking – orip Sep 4 '11 at 20:40
3  
source code from the second link is dead :/ – seb Sep 24 '12 at 23:25

You could use standard Java synchronization (e.g., synchronized(this) {} ) around your database accesses.

share|improve this answer
Cheers Mark, I was under the impression that wouldn't be required. I'll have a look at the code in question again. – Pandalover Apr 15 '10 at 17:51
1  
I get this exception for read-only mode. Would putting synchronized block around all my reading methods slow down the app? – Bostone Feb 9 '11 at 21:31
Added blocks and yet - still running into same issues if on the lesser scale. I think it's because I'm calling db from the service and the system creates multiple service threads (to my surprise). What's the "official" recommendation on true thread-safe db programming? – Bostone Feb 16 '11 at 18:44
@DroidIn.net: "I think it's because I'm calling db from the service and the system creates multiple service threads (to my surprise)." -- the only way that would occur is if you are using AIDL and binding across processes, which is infrequently needed. – CommonsWare Feb 16 '11 at 18:54
1  
@ChuckNorris: "If I am remembering this correctly, how can you construct a singleton SQLiteOpenHelper that needs a context without giving it a Context object that could go out of scope at any time?" -- singletons are one case where Application is the right answer. – CommonsWare Mar 2 '12 at 20:51
show 3 more comments

I solved this same exception just by making sure all my database opens have closes, and (more importantly) to assure this, making the scope of each database instance local ONLY to the method that needs it. ContentProvider is a good, safe class to use when accessing a db from multiple threads, but also make sure you're using good db practices:

  • Keep db instances local (no SQLiteDatabase class members!)
  • call close() on the db in the same method in which it's opened
  • call close() on the cursors you get from the db
  • listen to LogCat for any complaints that SQLiteDatabse might have
share|improve this answer

Take into account that SQLite databases are file based and are not intended to be able to be accessed in a multi-process way. The best procedure on mixing SQLite with multi-processing is using semaphores (aquire(), release()) in each database related access.

If you create a Db wrapper that aquires/releases a global semaphore your DB access will be thread safe. Indeed this means that you could get a bootleneck because you are queueing the access to the DB. So in addition you could only wrap the access using semaphores if it's an operation that alters the database, so while you are alterin the db no one will be able to access it and wait until the write process has been completed.

share|improve this answer

You must be calling getWritableDatabase() from a function rather then the constructor of the db helper class. If the db helper class object is created with SQLiteDatabase.openOrCreateDatabase(DB_PATH, null); or similar and then getWritableDatabase() is called from a function, it will try to make a synchronous call to DB causing a DB lock exception.

share|improve this answer
1  
The SQLiteOpenHelper onCreate() method is only called if the database file did not already exist. – Harrison Jan 16 '12 at 21:10
agreed. the problem is not the call to oncreate() rather synchronous call to DB if a DB object already exists. – user868114 Jan 19 '12 at 17:54

Are you talking of a single user action that, inside your program, causes multiple threads to be run, more than one of which may be accessing the database in update mode ?

That's bad design, period. There is no way for you to know in which order the threads will be scheduled by your OS (/VM), and therefore there is no way for you to know in which order the database accesses will happen, and that is very likely to imply that there is no way for you to know that database accesses will always happen in the order that you are expecting.

All database accesses generated by/coming from some user action should all be done in one single thread.

share|improve this answer
No I am not, but thanks. – Pandalover Apr 16 '10 at 8:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.