How can I insert a list of data into SQLite which is fetched from a remote database? Also I want to list out these data during offline mode. What is the easiest method to do this?
How can I insert a list of data into SQLite which is fetched from
Share
You can create a ContentProvider (in most cases it ends up necessary)
http://developer.android.com/guide/topics/providers/content-provider-basics.html
Or use the SQLiteDatabase and SQLiteOpenHelper classes:
http://developer.android.com/reference/android/database/sqlite/SQLiteDatabase.html
http://developer.android.com/reference/android/database/sqlite/SQLiteOpenHelper.html
Or the ORMLite library:
http://ormlite.com/sqlite_java_android_orm.shtml