PersistenceManager pm=PMF.get().getPersistenceManager();
DatabaseKind1 data=new 
DatabaseKind1(data1,data2,data3,data4,data5,data6,data7);
       
  Key key = KeyFactory.createKey(DatabaseKind1.class.getSimpleName(), 
"primarykey");
  data.setKey(key);
        
   try{
            pm.makePersistent(data);
       }
        finally{
            pm.close();
        }

In my Datastore, I have more that 10 Entities with Same key(Primary 
key)....From these 10 Entities 

This is my Coding to store a Entity in Datastore using JDO.....

My question is,From the datastore* how to retrive recently updated data  
using JDO queries?*........

Please help me.....please provide sample......

-- 
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.

Reply via email to