Consider these 2 queries:

Query 1:
SELECT * FROM Action WHERE study= '2a' and type = 'o' ORDER BY __key__

Query 2:
SELECT * FROM Action WHERE study= '2a' and type = 'o'

Is there any reason why query 1 would return fewer results than query
2? Because when I run them (just via the admin console), this is what
happens... I am convinced it's an App Engine bug. Here's my action
model:

class Action(db.Model):
  participantID = db.StringProperty()
  study = db.StringProperty()
  date = db.IntegerProperty()
  type = db.StringProperty()
  value = db.TextProperty()

Any help is greatly appreciated!

Thanks,
Dave
--~--~---------~--~----~------------~-------~--~----~
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-appengine@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
-~----------~----~----~----~------~----~------~--~---

Reply via email to