Question

is there some front end that could allow an admin to insert, update, delete records, and create modify and drop tables from Google Application Engine datastore, just like you do with phpMyAdmin on mysql???

Was it helpful?

Solution

Google App Engine provides out of the box an administration console to manage your records.

As a valid alternative, have a look to the App Engine admin project.

Implemented features

  • List records for each registered model
  • Create new records
  • Update/edit records
  • Delete records
  • Paging of items in Appengine Admin list view

Here the complete list of implemented features.

OTHER TIPS

Have you tried http://localhost:8888/_ah/admin/datastore? It's very basic but it is already there.

In production, the admin console provides this functionality. In the SDK, you can go to /_ah/admin/datastore for the same.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top