I am working on android project. I used sqlite database for it. I have tables in database. I have created databasehelper class. i want to count number of records in particul
fun getFruitTableCount(): Int {
val db = readableDatabase
val numRows = DatabaseUtils.longForQuery(db, "SELECT COUNT(*) FROM " + DBContract.FruitEntry.TABLE_NAME, null).toInt()
return numRows
}