Hi everyone,
I have a doubt about the result of a query.
I have a table like User(id,name,surname,phone) and i want to query this table in my EJB
in this way:
List res = em.createQuery("select u.id, u.name from User u where
u.phone='555321').getResultList();
What kind of object there are inside res?
I have tryed to cast res in a List but it doesn't work.
How can i do to access the data in res list??
Thanks to all.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4112938#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...