如何在android中生成自动id(增量)?

发布于 2024-11-03 09:27:21 字数 184 浏览 1 评论 0原文

我在android表单中有一个orderid字段..现在我想添加一个数字以及orderid的内容,这样每次数字都应该以增量方式..

例如 如果用户在 orderid 中输入 123 那么我想将 123100 存储在数据库中 同样,在下次运行时,我想将 123101 存储在数据库中..等等...我将如何做到这一点,

请帮助

i have one orderid field in android form .. now i want to add a number along with the content of orderid such that each time the number should be in incremental manner..

for example
if user input 123 in orderid then i want to store 123100 in database
similarly on next run i want to store 123101 in database ..and so on...how will i do this

plz help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半葬歌 2024-11-10 09:27:21

创建一个类型为 INTEGER PRIMARY KEY 且名称为 _id 的字段。每次将值添加到数据库中时,该字段都会增加 1。

Create a field with INTEGER PRIMARY KEY as a type with the name _id. This field will increase by one each time a value is added into the database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文