Hi !
I have model

class RawData(db.Model):
        raw = db.StringProperty(multiline=True)
        date = db.DateTimeProperty(auto_now_add=True)

somvere in my code i try

...
query = RawData.gql("ORDER BY date LIMIT 100")
query_length = query.count()
but it returns that query_length is 0 ! but without "ORDER BY date
LIMIT 100" query works.

The next problem is the same datetime in all records in my
RawData.date (when i try it run on Development Server)

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to