Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I open my Core Data database with sqlite3, I can run the following SQL commands and get the results needed.

sqlite> select count(*) from ZPROFILEITEMS;
15

The same goes for the SUM() function:

sqlite> select SUM(ZPROFILEITEMSSONGORDER) from ZPROFILEITEMS; 
120

How can I accomplish the same in Core Data?

Thanks in advance

-Paul

share|improve this question

1 Answer

For counting you can always use this method on the context

- (NSUInteger)countForFetchRequest:(NSFetchRequest *)request error:(NSError **)error

This will return the number of fetched objects if core data had to fetch them.

For the sum method I guess one way would be to fetch the objects and to loop manually through them ...

share|improve this answer
I found this that should do what I'm looking for: link – Paul S. Feb 15 '12 at 14:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.