summaryrefslogtreecommitdiffstats
path: root/core/java/android/database
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@android.com>2013-05-28 12:57:59 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-05-28 12:57:59 -0700
commit79df1e65455fdb69f07675cffae99dea06a5afb2 (patch)
tree78a4527cf97e8874d45168ffe38ed6f1a6a0dbb8 /core/java/android/database
parenta503315865507129e93efe15b281dd0ba98e6da3 (diff)
parente2a281ca85f17eaf6d47978c76d2cafb0fa81782 (diff)
downloadframeworks_base-79df1e65455fdb69f07675cffae99dea06a5afb2.zip
frameworks_base-79df1e65455fdb69f07675cffae99dea06a5afb2.tar.gz
frameworks_base-79df1e65455fdb69f07675cffae99dea06a5afb2.tar.bz2
am e2a281ca: Merge "Add additional Method that check whether a table is empty or not"
* commit 'e2a281ca85f17eaf6d47978c76d2cafb0fa81782': 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.java12
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.
*/