I'm sure there is a way to do this but I can't find it in the
documentation anywhwere:

given the example code below:
    class Person(db.Model):
      first_name = db.StringProperty()
      last_name = db.StringProperty()
      city = db.StringProperty()
      birth_year = db.IntegerProperty()
      height = db.IntegerProperty()

# The Query interface prepares a query using instance methods.
    q = Person.all()
    q.filter("last_name =", "Smith")


How do you change the filter to return entities with last_name values
of "SMITH" or "smith"

Thanks!
-Aaron OBrien
Shawnee KS, USA
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" 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?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to