-
public interface DatabaseErrorHandlerAn interface to let apps define an action to take when database corruption is detected.
-
-
Method Summary
Modifier and Type Method Description abstract voidonCorruption(SQLiteDatabase dbObj)The method invoked when database corruption is detected. -
-
Method Detail
-
onCorruption
abstract void onCorruption(SQLiteDatabase dbObj)
The method invoked when database corruption is detected.
- Parameters:
dbObj- the SQLiteDatabase object representing the database on which corruptionis detected.
-
-
-
-