How to use the ORMLite query builder to get the total records in a table
Asked Answered
P

2

24

Similar to

select count(*) from tablename;

what should be query in ORMLITE

i tried something like

int total = dao.queryBuilder().("select count(*)");
Pretext answered 4/9, 2012 at 9:43 Comment(0)
H
61

How to use the ORMLite query builder to get the total records in a table

ORMLite has a Dao.countOf() method that returns the total number of rows in a table:

long numRows = dao.countOf();

You can also count the number of rows in a custom query by calling the countOf() method on the Where or QueryBuilder object.

// count the number of lines in this custom query
long numRows = dao.queryBuilder().where().eq("name", "Joe Smith").countOf();
Herstein answered 4/9, 2012 at 19:46 Comment(2)
countOf() will return long value not intBrigidbrigida
Thanks @KJEjava48. Fixed.Herstein
T
2

for package 5: you can use countOf()

From the docs:

Returns the value returned from a SELECT COUNT(*) query which is the number of rows in the table. Depending on the database and the size of the table, this could be expensive.

Tajo answered 4/9, 2012 at 9:48 Comment(2)
I'm not really familiar with ormlite. I just searched.What about: dao.queryBuilder().countOf();Tajo
Did it work ? if so, please help me,yourself and the community by accepting this as the right answerTajo

© 2022 - 2024 — McMap. All rights reserved.