-
-
Save jezinka/26642b495bce6568292df2fffb52c6fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import static android.database.DatabaseUtils.queryNumEntries; | |
| public boolean isAnyMealSaved(SQLiteOpenHelper helper) { | |
| SQLiteDatabase db = helper.getReadableDatabase(); | |
| return queryNumEntries(db, "meal") > 0; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment