我正在尝试在我的GQL查询中使用游标。根据{{3}}和以下示例,我可以这样做:
people = Person.all().filter("age >", 18)
start_cursor = memcache.get('person_start_cursor')
if start_cursor:
people.with_cursor(start_cursor)
query_people = db.GqlQuery("SELECT * FROM Person WHERE age < 65 LIMIT @start_cursor 2")
for person in query_people:
self.response.out.write('<p><b>Name:</b> %s ' % person.name)
我得到错误:“BadQueryError:Parse Error:符号@start_cursor的LIMIT子句中的非数字限制”。我做错了什么?光标定义不明确?我跟着Google Cloud Datastore grammar
提前致谢!