Following are related to GAE/J local development setup: How do i add/edit entities in local datastore (preferably using some UI)? _ah/admin allows only to view entities.
I have a question my db model looks like: class UserAnswer (db.Model): user = db.UserProperty() name = db.StringProperty()
I\'ve been trying to use a MD5 hash as a key name on AppEngine, but the code I wrote raises a UnicodeDecodeError
I am trying to learn JDO (and at the same time its GAE and Spring intricacies) by creating a small web app, and am having trouble getting updated domain objects to persist back to the database. I init
How do i store data which is more than 10 MB in google app engine? put() from datastore allow开发者_运维百科s only 1 MB.
I\'ve been struggling for this issue for a few hours - I know there\'s probably a simple solution that I\'m overlooking.
Hello iam new to GWT framework. I want to persist my domain objects/entities to google application engine datastore using rpc. A simple implementation to test if i can make multiple rpc calls ( greetS
Does anyone have a very simple example of using OData4J and GAE? In the OData4J site there is a stub project for use in GAE...but doesn\'t really show how to expose entities out of the datastore as
In my GAE application I want to make a 开发者_开发技巧JDOQL which returns a List where every element exist at most once even in the database there are more. How can I do this?I dont know about JDOQL,
I use Quercus to run php on google app engine and use GAE LowLevel Api to connect datastore. I need sample php code to CRUD ( Create, Read, Update, Delete ) in datastore.