When I make a CMP findAll (no WHERE part) method call, how does JOnAS manage the result set? I encoutered that findAll() runs quite long (Account sample, over 6000 rows in table, needs about 1 Minute before first names occur). This is not a problem of the JDBC driver or the DBMS, because I tried it with Inprise Application Server, which responded at once. Mabye JOnAS does load all rows before returning? Is there the possibility to change this behavior, so that not all entities get loaded (I need it for browsing only, so I will retrieve data row by row when needed from my browser client)?
