如同
select count(*) from tablename;
在ORMLITE中应该查询什么
我尝试过类似的东西
int total = dao.queryBuilder().("select count(*)");
最佳答案
ORMLite有一个 Dao.countOf()
方法,该方法返回表中的总行数:
long numRows = dao.countOf();
您还可以通过调用
countOf()
或Where
对象上的QueryBuilder
方法来计算number of rows in a custom query。// count the number of lines in this custom query
long numRows = dao.queryBuilder().where().eq("name", "Joe Smith").countOf();