model is:

class DjUser( db.Model ):
    DjID = db.IntegerProperty( indexed = False )
    Name = db.StringProperty()
    Email = db.StringProperty( indexed = False )
    Password = db.StringProperty()

yesterday, i set the Name and Password indexed=False to reduce the
datastore ops. then i notice the gql for user login

DjUser.gql( "where Name = :1 and Password = :2", name, password )

can not work.

i rollbacked to last version and user logins ok. but i met another
problem. the DjUser which has put() during the wrong code is not
indexed. with the right name and password can not be found in the gql
above.

how can i fix it?

-- 
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