Skip to content

Instantly share code, notes, and snippets.

@oksep
Created August 27, 2015 10:06
Show Gist options
  • Save oksep/6686194e0435f8cb71a7 to your computer and use it in GitHub Desktop.
Save oksep/6686194e0435f8cb71a7 to your computer and use it in GitHub Desktop.
Sqlite ,get table row count
private long getTableRowCount(String tableName) {
String sql = "select count(*) from " + tableName;
SQLiteStatement statement = db.compileStatement(sql);
return statement.simpleQueryForLong();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment