i don't know if this is on purpose
but when you call GenericUserDAO.selectAll(int startFrom, int count)
this function will generate a List of users
but not all the field will be initialized!
and that is because the query you used (in generic_qeuries.sql) is
so actual most member fields of User class will left uninitialized (such as icq , avatar, aim , yim and many more...)
maybe
you should change your query so it will select everything about the user?
[originally posted on jforum.net by pavel_twr]