Lorenzo Sicilia wrote:
Anyway if I need get some data from a database with jsf I have any chance? Or I need a translator class from ResultSet to List?
Hi,you could either use jdbc or jdo. With jdbc you would have to iterate over the resultset, create an object and put this in a list and then return the list. JDO returns a collection instead of a resultset. I use JDO at the moment. Maybe have a look at www.jpox.org
Regards Alex

