What is considered "best practice" when executing queries on a SQLite db within an Android app?

Is it safe to run inserts, deletes and select queries from an AsyncTask's doInBackground ? Or should I use the UI Thread ? I suppose that db queries can be "heavy" and should not use the UI thread as it can lock up the app - resulting in an ANR.

If I have several AsyncTasks, should they share a connection or should they open a connection each ?

Any best practices in this area on android?

link|improve this question

feedback

5 Answers

up vote 81 down vote accepted

Inserts, updates, deletes and reads are generally OK from multiple threads, but answer #1 is not correct. You have to be careful with how you create your connections and use them. There are situations where your update calls will fail, even if your database doesn't get corrupted.

The basic answer.

The SqliteOpenHelper object holds on to one database connection. It appears to offer you a read and write connection, but it really doesn't. Call the read-only, and you'll get the write database connection regardless.

So, one helper instance, one db connection. Even if you use it from multiple threads, one connection at a time. The SqliteDatabase object uses java locks to keep access serialized. So, if 100 threads have one db instance, calls to the actual on-disk database are serialized.

So, one helper, one db connection, which is serialized in java code. One thread, 1000 threads, if you use one helper instance shared between them, all of your db access code is serial. And life is good (ish).

However. If you create multiple helper instances, say one per thread, you are in a bad way. Why? Well, its true the sqlite uses file level locking to prevent database corruption, but the java code simply recognizes the low level error, and deals rather harshly with it. Say you call 'insert' on the SqliteDatabase object. You won't even get an exception. You'll get a little logcat error, but otherwise your app will continue on its merry way, but with no actual insert having been done.

So, multiple threads? Use one helper. Period. If you KNOW only one thread will be writing, you MAY be able to use multiple connections, and your reads will be faster, but buyer beware. I haven't tested that much.

Here's a blog post with far more detail and an example app.

http://www.touchlab.co/blog/android-sqlite-locking/ (Updated link 7/20/2011)

Gray and I are actually wrapping up an ORM tool, based off of his Ormlite, that works natively with Android database implementations, and follows the safe creation/calling structure I describe in the blog post. That should be out very soon. Take a look.

link|improve this answer
1  
As an aside, Ormlite's android support can be found at ormlite.sourceforge.net/sqlite_java_android_orm.html. There are sample projects, documentation, and jars. – Gray Oct 20 '10 at 15:37
1  
A second aside. The ormlite code has helper classes that can be used to manage dbhelper instances. You can use the ormlite stuff, but its not required. You can use the helper classes just to do connection management. – Kevin Galligan Nov 7 '10 at 21:44
7  
Kāgii, thank you for the detailed explanation. Could you clarify one thing -- I understand you should have ONE helper, but should you also only have one connection (i.e. one SqliteDatabase object)? In other words, how often should you call getWritableDatabase? And equally importantly when do you call close()? – Artem Apr 8 '11 at 12:51
Blog is down. Here's a Google cache – pydave Jul 14 '11 at 19:06
1  
I updated the code. The original was lost when I switched blog hosts, but I added some slimmed down example code that will demonstrate the issue. Also, how do you manage the single connection? I had a much more complicated solution initially, but I've since amended that. Take a look here: touchlab.co/uncategorized/single-sqlite-connection – Kevin Galligan Oct 15 '11 at 17:46
show 3 more comments
feedback

The Database is very flexible with multi-threading. My apps hit their DBs from many different threads simultaneously and it does just fine. In some cases I have multiple processes hitting the DB simultaneously and that works fine too.

Your async tasks - use the same connection when you can, but if you have to, its OK to access the DB from different tasks.

link|improve this answer
This works after you enable setLockingEnabled(true)? What other settings are necessary to get multiple threads accessing a single connection to the same database? – Gray Aug 31 '10 at 1:59
Also, do you have readers and writers in different connections or should they share a single connection? Thanks. – Gray Aug 31 '10 at 2:00
@Gray - correct, I should have mentioned that explicitly. As far as connections, I would use the same connection as much as possible, but since the locking is handled at the filesystem level, you can open it multiple times in the code, but I would use a single connection as much as possible. The Android sqlite DB is very flexible and forgiving. – Brad Hein Aug 31 '10 at 14:08
feedback

Last explanation is great. Thanks for it. I use only one DbHelper per Action. But I still doesn't understand some things.

What about when I initialize DbHelper in onCreate method in activity A. In this activity I will start background thread that will download large XML, parse them, store data in the DB and instantly update UI during this process.

But now user switch to another activity, which will be parse and show another XML.

How do this? Stop updating thread in onPause method? and call db.close()? And open it again in new active activity?

Then first import doesn't be completed and when user open activity A again parsing must start from begining. For me would be better keep import task working, but this mean that new activity will use the same database with new one DbHelper.

link|improve this answer
onCreate is not for downloading data. Its meant to be fast, to create your tables and move on with life. To do what you want to do, you should create a service that will kick off downloading your data and do it in the background. Your activity can check for the service, create it if its not there, or check on the status of the download. Also VERY important. Do not create a thread in onCreate and return before your database is ready (remember, download in another method. Just talking about structure here). Very bad. – Kevin Galligan Nov 7 '10 at 21:43
Also. You don't really want one DbHelper per "action" (I assume you mean Activity). You want one per application. In theory, a new activity will only be created after the other one stops what its doing, but life doesn't really work that way. If you add in services, forget it. That's the point of the post. One db, multiple threads. – Kevin Galligan Nov 7 '10 at 21:46
feedback

My understanding of SQLiteDatabase APIs is that in case you have a multi threaded application, you cannot afford to have more than a 1 SQLiteDatabase object pointing to a single database.

The object definitely can be created but the inserts/updates fail if different threads/processes (too) start using different SQLiteDatabase objects (like how we use in JDBC Connection).

The only solution here is to stick with 1 SQLiteDatabase objects and whenever a startTransaction() is used in more than 1 thread, Android manages the locking across different threads and allows only 1 thread at a time to have exclusive update access.

Also you can do "Reads" from the database and use the same SQLiteDatabase object in a different thread (while another thread writes) and there would never be database corruption i.e "read thread" wouldn't read the data from the database till the "write thread" commits the data although both use the same SQLiteDatabase object.

This is different from how connection object is in JDBC where if you pass around (use the same) the connection object between read and write threads then we would likely be printing uncommitted data too.

In my enterprise application, I try to use conditional checks so that the UI Thread never have to wait, while the BG thread holds the SQLiteDatabase object (exclusively). I try to predict UI Actions and defer BG thread from running for 'x' seconds. Also one can maintain PriorityQueue to manage handing out SQLiteDatabase Connection objects so that the UI Thread gets it first.

link|improve this answer
feedback

after struggling with this for a couple of hours, I've found that you can only use one db helper object per db execution. For example,

for(int x = 0; x < someMaxValue; x++)
{
    db = new DBAdapter(this);
    try
    {

        db.addRow
        (
                NamesStringArray[i].toString(), 
                StartTimeStringArray[i].toString(),
                EndTimeStringArray[i].toString()
        );

    }
    catch (Exception e)
    {
        Log.e("Add Error", e.toString());
        e.printStackTrace();
    }
    db.close();
}

as apposed to:

db = new DBAdapter(this);
for(int x = 0; x < someMaxValue; x++)
{

    try
    {
        // ask the database manager to add a row given the two strings
        db.addRow
        (
                NamesStringArray[i].toString(), 
                StartTimeStringArray[i].toString(),
                EndTimeStringArray[i].toString()
        );

    }
    catch (Exception e)
    {
        Log.e("Add Error", e.toString());
        e.printStackTrace();
    }

}
db.close();

creating a new DBAdapter each time the loop iterates was the only way I could get my strings into a database through my helper class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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