向我的使用 Java 和 JDO 制作的 Google 应用程序引擎应用程序添加功能
这是我的测试应用程序: http://caoscoding.appspot.com
登录:admin pass: test
是一个简单的应用程序,您可以在其中插入一些数据并取出该数据的表格,仅此而已。
我想再添加两个功能:修改条目和删除条目。
这两个函数应该怎么写呢?我已经没有任何好主意了。orm
是JDO,并且都是用java制作的。
请提出任何这样做的想法,或任何代码片段。我不知道如何编辑、保存并将更新的条目放入数据存储中。而且也不知道如何删除它,我真的被困在这里了。
Here is my testing app: http://caoscoding.appspot.com
login: admin
pass: test
Is an simple app where you insert some data and get out a table, of that data, that's all.
I want to add 2 more functions: modify an entry and delete an entry.
How should I write these 2 functions? I don't have any good idea any more..
The orm is JDO, and is all made with java.
Please suggest any idea to do so, or any code snippet. I don't know how to edit, save and put the updated entry in the datastore. And don't know how to delete it either, I am really stuck here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要编辑条目,您可以执行以下操作:
调用持久性管理器来删除条目类似地是:
To edit an entry you would do something like:
The call to the persistence manager to delete an entry would similarly be: