[jboss-user] [JBoss Seam] - Re: Retrieving data from database

2007-06-27 Thread alexrozario
i am trying your suggestion too kruno.. but cant finish it off. still i am facing the same issue. help me to overcome this issue View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4058531#4058531 Reply to the post : http://www.jboss.com/index.html?module=bb&op=po

[jboss-user] [JBoss Seam] - Re: Retrieving data from database

2007-06-27 Thread alexrozario
"alexrozario" wrote : | how to view(display) that details in my view page.. | | i am using facelet file to view that data. | | and this is my session bean class which retrieving data | | @Stateless | | @Name("searchsession") | | public class SearchSession implements Search

[jboss-user] [JBoss Seam] - Re: Retrieving data from database

2007-06-26 Thread Kruno
Select seems to be the problem em.createQuery("select s.storeName,s.reviewPoints,s.website from Stores s").getResultList(); this way you will get String [] in side private List details; you need to get list of object Stores, try this: em.createQuery("from Stores s").getResultList(); View

[jboss-user] [JBoss Seam] - Re: Retrieving data from database

2007-06-25 Thread alexrozario
hi kruno, thank you for your response.. i found that its not an database error. i can retrieve data from table.. but the problem is in viewing.. how to view(display) that details in my view page.. i am using facelet file to view that data. and this is my session bean class which retrieving data

[jboss-user] [JBoss Seam] - Re: Retrieving data from database

2007-06-23 Thread Kruno
Please post the source. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4057123#4057123 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4057123 ___ jboss-user mailing list jboss-u