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?

link|improve this question

67% accept rate
is name the primary key? – antony.trupe May 6 '10 at 20:14
feedback

2 Answers

up vote 1 down vote accepted

Take a look at the documentation, specifically these articles: Queries and Indexes and Creating, Getting and Deleting Data.

link|improve this answer
feedback

//get all the matching objects
//loop over the matching objects
////deleting each object

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.