Hey I have this code but it doesn't work because it is expecting a string. How can I make it work?
class Atable(BaseModel):
owner = db.UserProperty()
(...)
--------- // --------------
query = "SELECT * FROM Atable WHERE owner=", users.get_current_user()
results = db.GqlQuery(query)
How can I fix that search? Thanks :)
I've started with the appengine database yesterday so be gentle :)