My Android application includes an SQLite database with an SQLiteOpenHelper class to help manage it. During application use, the user may perform some operatio
SQLiteOpenHelper
Always measure before you optimize!
Make sure that DB operations you do affect user experience and than start looking for a solution.
If database stuff gets slow, then use AsyncTask, which was designed to perform tasks in the background, and then update the GUI on EDT.