database - I have PHP running on Google App Engine - How do I use a DB? -
I followed for setup and it works great on GAE on how to use databases / datastore with PHP Any suggestions
Because Google provides low levels Access to datastore in Java API
< P>You should be able to use those PHP-Java integration, such as something:
/ / Get handle on datastore $ datastore = new Java ('Com.google.appengine.api.datastore.DatastoreServiceFactory') - & gt; GetDatastoreService (); // Known Key Name $ data lookup from data $ userEntity = $ datastore- & gt; Get (New Java ('com.google.appengine.api.datastore.KeyFactory') - & gt; createKey ("UserInfo", email));
Comments
Post a Comment