If I have a Cursor object for a query, is there any way of knowing how far through the resultset I am or do I need to maintain a counter myself?
If it matters, I'm using the Java impl开发者_JS百科ementation of GAE.
No. Cursors bookmark a location in a result set - the position between keys - not an offset.
精彩评论