(Perhpas it's a FAQ but I haven't found the response...) I use JDO to access the DataStore. Is there any limit on the number of items a query can return? I read of a limit of 1000 but I have done some tests with more than 2000 entries. I can get all the items without error.
PersistenceManager pm = PMF.get().getPersistenceManager(); List<Person> persons = (List<Person>) pm.newQuery( "select from " + Person.class.getName()).execute(); Is there any limit? fabrizio -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
