Conflict resolution in Android's SQLiteDatabase

Viewed 11915

How does Android's SQLite library resolve conflicts if I insert duplicate rows? I am building my app for API level 7, which unfortunately does not have the SQLiteDatabase.insertOnConflict() method that was included starting in API level 8.

3 Answers
Related