List of usage examples for android.database.sqlite SQLiteDatabase isDatabaseIntegrityOk
public boolean isDatabaseIntegrityOk()
From source file:me.piebridge.bible.Bible.java
@SuppressLint("NewApi") private boolean isDatabaseIntegrityOk(SQLiteDatabase database) { // assume ok if the api is not available if (Build.VERSION.SDK_INT < Build.VERSION_CODES.HONEYCOMB) { return true; } else {/*w ww. j ava 2s . com*/ return database.isDatabaseIntegrityOk(); } }