如何从 Google Datastore(Java 中)删除特定记录?
我的数据存储中有一些记录,我想从表中删除特定记录。例如,在 SQL 中,我们使用 delete * from table1 where name ="mike"
java 中的等效代码是什么(我正在使用带有 Google appengine API 插件的 Eclipse)?或任何其他方法来做到这一点?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
//获取所有匹配的对象
//循环匹配的对象
////删除每个对象
//get all the matching objects
//loop over the matching objects
////deleting each object