生成自动ID
我想生成 ame100
、ame101
等类型的自动 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使你的主键自增,以便db将生成下一个值。
每次您需要新的 id 时,只需从表中向数据库询问 MAX(ID) 即可。
增加它并设置为edittext!
注意:此解决方案仅在您有一个插入值的位置时才有效。
我建议在插入之前不要显示数字,而是在您已经生成了对象的 id 后创建它。
Make your primary key autoincrement, so that db will generate the next value.
Each time you need new id, just ask your databse for MAX(ID) from your table.
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.