9 Replies Latest reply on Aug 12, 2003 8:14 AM by scoy

    CMP findAll() only finds the first 1000 JBoss 3.02

    andrewboyd

      I call my CMP entity's findAll() but it only returns the first thousand. I've got an Oracle DB with the thin JDBC driver. It should be returning 250K Entities but does not. I'm thinking that it must be some setting somewhere. Any suggestions would be greatly appreciated. Here's the code:

      Collection urls = urlRemoteHome.findAll();
      for(Iterator iterator = urls.iterator(); iterator.hasNext(); ){
      UrlRemote urlRemote = (UrlRemote) iterator.next();

      ...

      Thanks in advance,
      Andrew