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?
Asked
Active
Viewed 1,230 times
0

David Underhill
- 15,896
- 7
- 53
- 61

Srivi
- 407
- 3
- 7
- 20
-
is name the primary key? – antony.trupe May 06 '10 at 20:14
1 Answers
0
//get all the matching objects
//loop over the matching objects
////deleting each object

antony.trupe
- 10,640
- 10
- 57
- 84