Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

While trying to learn Play Framework I ran across the following problem:

How do I calculate the summary for a field in a Play Framework Model? I would like to do the equivalent to SQLs "SELECT SUM(totalAmount) FROM events where employee_id = 23".

I could count the summary myself, like my code below, but I'd rather like the SQL-server to do the counting:

public static Double countSaldoForEmployee(Employee e) {
    // Get all Events for the employee
    List<Event> events = Event.find("byEmployee", e).fetch();
    Double sum = 0.0    ;
    for(Event event: events) {
        if(event.totalAmount != null) {
            sum += event.totalAmount;
        }
    }
    return sum;
}
share|improve this question

1 Answer

up vote 2 down vote accepted

You should be able to do this with a simple native query. Something like the following.

public static Double countSaldoForEmployee(Employee e) {

    return  (Double)em.createNativeQuery("SELECT SUM(e.totalAmount) FROM events e where e.employee_id = "+e.id).getSingleResult();    
}
share|improve this answer
Thank you! Just what I was looking for. – Franz Dec 31 '11 at 4:55

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.