How to get the number of rows in a database table with Flutter SQFlite

Issue

How do I get the row count of a database table in Flutter. I am using the SQFlite plugin.

I assume that it is similar to Android, but Android has DatabaseUtils.queryNumEntries(db, TABLE_NAME). Does SQFlite have something similar?

I am answering the question to the best of my knowledge below, but I would be glad for a better answer if there is one.

Solution

You can use

int count = Sqflite.firstIntValue(await db.rawQuery('SELECT COUNT(*) FROM table_name'));

where db is an SQFlite Database.

Source: I found this here and in the source code.

Answered By – Suragch

This Answer collected from stackoverflow, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0

Leave a Reply

(*) Required, Your email will not be published