Room database Count Table Row
@Query("SELECT COUNT(column_name) FROM tableName")
LiveData<Integer> getRowCount(); //with LiveData
@Query("SELECT COUNT(column_name) FROM tableName")
int getRowCount();
Room database Count Table Row
@Query("SELECT COUNT(column_name) FROM tableName")
LiveData<Integer> getRowCount(); //with LiveData
@Query("SELECT COUNT(column_name) FROM tableName")
int getRowCount();