I have some records in datastore, I want to delete a specific record from the table. for example in SQL , we use delete * from table1 where name ="mike"
what is the equivalent code in java (I m using Eclipse with Google appengine API plugin)? or any other method to do that?
views:
75answers:
2
+1
A:
Take a look at the documentation, specifically these articles: Queries and Indexes and Creating, Getting and Deleting Data.
Corey D
2010-04-30 20:51:32
A:
//get all the matching objects
//loop over the matching objects
////deleting each object
antony.trupe
2010-05-06 20:14:00