I\'m very new to App Engine Datastore and I could not figure this out. I have these models: class SomeUser(User):
How can I make a selection in GQL using a List as filter. I开发者_如何学JAVAf I have the class public class Obj{
I\'m having some issues when I try to insert the 36k french cities into BigTable. I\'m parsing a CSV file and putting every row into the datastore using this piece of code:
I\'m trying to create a site which is quite similar to Twitter. Users will be able to post messages. And users will be able to \'follow\' each other. On the homepage, they see the messages from开发者_
When i use the OR condion in GQL it return error messege tht \"BadQueryError: Pars开发者_开发技巧e Error: Expected no additional symbols at symbol OR . Why?
Hi I am trying to list playlists wich contain songs by a given arti开发者_如何学编程st for which i have the keyname, my models are:
I\'m getting this error: Parse Error: Invalid ORDER BY Property at symbol :3 Can\'t see what is causing it, if I remove the substitution and add \"date\" it works.
I have a following model in the Google appengine app. class TestModel(db.Model): names = db.StringListProperty(required=False)
I have the following 2 classes: class UsersRSS(db.Model): userId = db.IntegerProperty() fileHash = db.StringProperty()
I have a problem when trying to find a single element by id. The entity class is this: @PersistenceCapable(identityType = IdentityType.APPLICATION)