Android: Bulk Insert, when InsertHelper is deprecated
There is plenty answers and tutorials using InsertHelper to do fast bulk insert in SQLiteDatabase. But InsertHelper is deprecated as of API 17. What is now the fastest method to bulk insert large sets of data in Android SQLite ? So far my greatest concern is that SQLiteStatement is not very comfortable to work with, where InsertHelper had binding columns and binding values, which was kind of trivial. SQLiteStatement has also binding methods, it extends SQLiteProgram . Just run it in transaction: final SQLiteDatabase db = mOpenHelper.getWritableDatabase(); final SQLiteStatement statement = db