AppEngine data viewer in hosted mode



If you are frustrated that you cannot view your data in the AppEngine GWT in hosted mode, follow these steps:

Update Google AppEngine SDK to the newest version (Java 1.2.2 as of this writing):


















Open:



The next (most alloying step) is to insert at least one record for each object you want to save:






public UserDao()
{
init();
}

private void init()
{
User user = fetchFacebook(new Long(764XXXXXX));
if (user != null)
return;

User uki = new User("Uki D. Lucas");
uki.setFacebookUID(new Long(764XXXXXX));
save(uki);
}













There is a List and Delete options, I suppose the Edit and Add are coming soon.


As an Amazon Associate I earn from qualifying purchases.

My favorite quotations..


“A man should be able to change a diaper, plan an invasion, butcher a hog, conn a ship, design a building, write a sonnet, balance accounts, build a wall, set a bone, comfort the dying, take orders, give orders, cooperate, act alone, solve equations, analyze a new problem, pitch manure, program a computer, cook a tasty meal, fight efficiently, die gallantly. Specialization is for insects.”  by Robert A. Heinlein

"We are but habits and memories we chose to carry along." ~ Uki D. Lucas


Popular Recent Articles