Hi, All

I have a fetch that sorts records by three columns where one of the columns is 
a date (timestamp).  Is there a way to sort the date by month & year only?  


Thanks,
Calven

Here is the current fetch:

        ...
         EOSortOrdering sortBySource = new EOSortOrdering("source", 
EOSortOrdering.CompareCaseInsensitiveAscending);
         EOSortOrdering sortByAppt = new EOSortOrdering("appointmentDate", 
EOSortOrdering.CompareCaseInsensitiveAscending);
         EOSortOrdering sortBySite = new EOSortOrdering(“site", 
EOSortOrdering.CompareCaseInsensitiveAscending);
         NSMutableArray orderings = new NSMutableArray();
         orderings.addObject(sortBySource);
         orderings.addObject(sortByAppt);
         orderings.addObject(sortBySite);
         EOFetchSpecification spec = new EOFetchSpecification(“records", qual, 
orderings);


 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Webobjects-dev mailing list      ([email protected])
Help/Unsubscribe/Update your Subscription:
https://lists.apple.com/mailman/options/webobjects-dev/archive%40mail-archive.com

This email sent to [email protected]

Reply via email to