如何在android中生成自动id(增量)?
我在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个类型为
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.