Android

SQLite Locking and Transaction Handling in Android

SQLite locking concept comes when we access database from multiple threads. What things should we keep in our mind while designing the database in android, let's see. firstly we create a helper class which extends SQLiteHelper class: [code language="java"] public class DatabaseHelper extends SQLiteOpenHelper { ... } [/code] Now...

by Akhilesh Dubey
Tag: Locking
19-Apr-2015