Regarding your question about connecting development code to the hosted datastore: there's a tool in Python for connecting to the remote datastore:
http://code.google.com/appengine/articles/remote_api.html The article has examples on putting together an interactive console, or otherwise working with entities programmatically using Python. A single datastore is not specific to Python or Java (some gotchas apply, such as if you use serialized fields), so you can deploy a Python version of the application that only implements remote_api. The concept is similar to the cookbook recipe for using the Python bulk loader for a Java application: http://appengine-cookbook.appspot.com/recipe/using-the-python-bulk-exporter-tool-with-a-java-application/ On Fri, Dec 4, 2009 at 6:05 PM, Hank Beasley <[email protected]>wrote: > Is it possible? I am new, but based on my research the answer is no. > How about connecting my development code to the hosted datastore? > > -- > > You received this message because you are subscribed to the Google Groups > "Google App Engine for Java" group. > To post to this group, send email to > [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-appengine-java%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-appengine-java?hl=en. > > > -- Ikai Lan Developer Programs Engineer, Google App Engine -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine-java?hl=en.
