[google-appengine] Re: Querying GAE Datastore for TIME only values in a DATETIME field.

2009-03-20 Thread djidjadji
You probably want to sort based on the dateindex, your Model is named Trend24Hr. Your best shot is to add a Integer property that just describes the hour, values [0..23]. Expanding your schema is not hard. Follow the directions in [1]. Make sure you first update the code that adds new values to

[google-appengine] Re: Querying GAE Datastore for TIME only values in a DATETIME field.

2009-03-20 Thread Tim Bull
OK, thanks, I guess that is easier -- just extending the schema. I'll wait to see if anyone has any other ideas, but this could be the easiest approach. Appreciate the suggestion. On Mar 20, 5:44 pm, djidjadji djidja...@gmail.com wrote: You probably want to sort based on the dateindex, your