GUI for Google AppEngine DataStore - google-app-engine

Is there a GUI for Google AppEngine DataStore ?
I'm looking for something similar to phpMyAdmin.
Thanks a lot.

appengine.google.com has its own datastore viewer. where you can login and view the complete datastore for all your applications. In the development server, appengine SDK emulates the same. You can access it like http://localhost:8080/_ah/admin

Yes, in your app dashboard, on the left you see section Data. In that click on datastore viewer. Ofcourse this works if your app is hosted on app engine, for local server see, How to browse local Java App Engine datastore?

Related

I want to choose my own Server and own database in google app engine

I am very newly in google app engine.. There are three Questoins on google app engine and in google app engine i want to choose JAVA language.
Does google app engine provide private cloude ?
I want to deploy my application with my own server( E.x.glassfish or JBoss) on google app engine ?
I want to use my own database instead of cloud SQL in google app engine?
Is it possible or not?
With Google Cloud Appengine - no, it's impossible.
With Google Cloud Instances or Google Cloud Containers - all of this is possible.
Appengine is just one piece of Google Cloud, designed for very specific job, with infrastructure managed by Google. You can only write some code (with lot of restrictions too) that runs inside it. You can read some details about code restritions there: https://cloud.google.com/appengine/docs/java/#Java_The_sandbox
What you're looking for is Google Cloud Instances, that are more standard virtual machines, where you can run anything you want. See https://cloud.google.com/compute/
There is still tools for Load Balancing, Health Check, Centralized Logging for Cloud Instances, and other stuff similar to features provided by Appengine.

running GAE GQL in Datastore Viewer in development

I have seen many references to using GQL in the "GAE Datastore viewer" but I just cant find a place to do that...
I am using the GAE JAVA SDK v1.8.8 and accessing the Data Store viewer via http://localhost:8899/_ah/admin/datastore.
Was this option removed? or should I somehow enable it?
Using GQL is not part of the local development server. It is available in the live App Engine console for your application.
The development web server includes a Datastore Viewer (/_ah/admin/datastore) via which you can only browse the local datastore.

Connecting to a datastore in GAE when developing in eclipse

I don't get something about the use of datastore in a gae app.
I can see after deploying to GAE your app would be using their datastore in the cloud. But when you are still developing the app in eclipse on your local machine, how is it talking to GAE's datastore?
A local simulation of the appengine datastore is created and used - you're not talking to the actual GAE datastore.
You can view your local datastore by going to :
http://localhost:8888/_ah/admin
while your application is running locally.
(using the correct port for your application)

Google App Engine database viewer/browser?

Does Google App Engine offer any kind of database browser/viewer tool which can show CURRENT data? 1-day late database view was offered, however, it's not enough.
appengine.google.com has its own datastore viewer. where you can login and view the complete datastore for all your applications. In the development server, appengine SDK emulates the same. You can access it like http://localhost:8080/_ah/admin
Datastore on the appengine is accessible at,
https://console.developers.google.com/datastore/entities/query?project=yourappid
(replace yourappid appropriately)
This will be the current data.
I think that datastore viewer in development server can be accessed through http://localhost:8888/_ah/admin instead.
If you're using GoogleAppEngineLauncher, you can see Admin Port and the Port. Go to the Admin Port to access the datastore.

Is there a datastore viewer in google app engine launcher?

Is there a datastore viewer in Google App Engine Launcher? Something similar to the Datastore Viewer that can be found within the GAE website?
Thanks.
There isn't a datastore viewer that is specifically part of the Launcher, but the dev server provides an admin console that has a datastore viewer. While dev_appserver.py (or whatever the Java equivalent is) is running, go to /_ah/admin in your browser.
Yes. Click on 'SDK console' when your app is running; this is the equivalent to going to /_ah/admin as suggested by Adam.
Under Eclipse there is plugin: http://appwrench.onpositive.com/index.page

Resources