The question might be wrong for this group, because maybe it's more of an SQL or python question then something appengine specific, I'm relatively new to programming so I'm not sure.
The issue I'm having is that, I'd like to be able to query a database, but just fetch it in chunks so I can display the information 10 at a time: name_query = db.GqlQuery("SELECT * FROM GroupOne WHERE name = :1 AND storeid = :2", self.request.get('name'), storeid) name_result = name_query.fetch(10) By then for the next page I'd like to fetch the 10th until the 20th. Is there any way to fetch a position, so a long series can be split up? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to google-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.