-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have about 50k entities stored in appengine. I am able to look up an individual record via the GQL admin interface with a query like:
SELECT * FROM Pet where __key__ = KEY( 'Pet','Fido')
But I'm having trouble figuring out how to do a batch version of this via JDO. Right now I have this:
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How we use GQL query language inside of jpa program.
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is GQL easy to learn for someone who knows SQL? How is Django/Python? Does App Engine really make scaling easy? Is there any built-in protection against "GQL Injections"? And so on...
I'd love to hear the not-so-obvious ups and downs of using app engine.
Cheers!
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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…
>>> More