生成自动ID

发布于 2024-11-04 01:33:28 字数 167 浏览 0 评论 0原文

我想生成 ame100ame101 等类型的自动 id,这样一旦我启动 Android 应用程序,就会生成该系列 ame 的下一个值*** 当前不在数据库中,应该自动出现在 edittext 中。因此,在提交表单时,我应该在数据库中有该值。

I want to generate automatic id of type ame100, ame101 and so on, so that as soon as I start my Android application, the next value of the series ame*** which is currently not in the database, should come automatically in edittext. So that on submitting the form I should have that value in database.

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

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

发布评论

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

评论(1

青丝拂面 2024-11-11 01:33:28
  1. 使你的主键自增,以便db将生成下一个值。

  2. 每次您需要新的 id 时,只需从表中向数据库询问 MAX(ID) 即可。

  3. 增加它并设置为edittext!

注意:此解决方案仅在您有一个插入值的位置时才有效。

我建议在插入之前不要显示数字,而是在您已经生成了对象的 id 后创建它。

  1. Make your primary key autoincrement, so that db will generate the next value.

  2. Each time you need new id, just ask your databse for MAX(ID) from your table.

  3. Increment it and set to edittext!

Note: this solution works only if you have one place of inserting the values.

I would suggest not showing the number before inserting, but create it after, when you already have generated id of the object.

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