diff options
author | Jeff Brown <jeffbrown@android.com> | 2013-05-28 13:51:01 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-05-28 13:51:01 -0700 |
commit | be165675672553254da34c8b7d83b956b68ed4d7 (patch) | |
tree | e480ace597aab3359ca9a1b158fb2ae5cbf01b71 /core/java/android/database | |
parent | bdfec113526828be76f3048d476847cfee39d61b (diff) | |
parent | dcb8d876581f9bf77e51c5539ef68993870264d8 (diff) | |
download | frameworks_base-be165675672553254da34c8b7d83b956b68ed4d7.zip frameworks_base-be165675672553254da34c8b7d83b956b68ed4d7.tar.gz frameworks_base-be165675672553254da34c8b7d83b956b68ed4d7.tar.bz2 |
am dcb8d876: am 79df1e65: am e2a281ca: Merge "Add additional Method that check whether a table is empty or not"
* commit 'dcb8d876581f9bf77e51c5539ef68993870264d8':
Add additional Method that check whether a table is empty or not
Diffstat (limited to 'core/java/android/database')
-rw-r--r-- | core/java/android/database/DatabaseUtils.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/core/java/android/database/DatabaseUtils.java b/core/java/android/database/DatabaseUtils.java index 1fc1226..e2d9724 100644 --- a/core/java/android/database/DatabaseUtils.java +++ b/core/java/android/database/DatabaseUtils.java @@ -792,6 +792,18 @@ public class DatabaseUtils { } /** + * Query the table to check whether a table is empty or not + * @param db the database the table is in + * @param table the name of the table to query + * @return True if the table is empty + * @hide + */ + public static boolean queryIsEmpty(SQLiteDatabase db, String table) { + long isEmpty = longForQuery(db, "select exists(select 1 from " + table + ")", null); + return isEmpty == 0; + } + + /** * Utility method to run the query on the db and return the value in the * first column of the first row. */ |