Anyone have a quick example of how to run a scalar query in JPA? I can't
find anything in the JPA demo.
I have this query:
select t.answer, count(distinct answer) from Vote t where t.poll = :poll
order by t.answer
but how do I call it? I normally do:
Model.createNamedQuery[...]("findVoteCountAnswersByPoll", "poll" ->
poll).findAll
But what is the type? And how do I get the results back out?
I know I did this once before somewhere, but I can't remember where and
I can't find it.
Thanks!
Chas.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Lift" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---