gpt4 book ai didi

android - 如何在 ActiveAndroid ORM 中使字段自动递增

转载 作者:太空狗 更新时间:2023-10-29 14:08:49 25 4
gpt4 key购买 nike

如何使用注释使整数或长字段自动递增。

最佳答案

我们可以在 documentation 中读到:

One important thing to note is that ActiveAndroid creates an id field for your tables. This field is an auto-incrementing primary key.

也许访问自动生成的主键对您来说就足够了?

此外,如果您想在模型中创建自定义主键,您可以查看 GitHub issue connected with ActiveAndroid 中提到的解决方案。 ,看起来像这样:

@Table(name = "Items", id = "clientId")
public class Item extends Model {
@Column(name = "id")
private long id;
}

那么id字段就是自定义主键,会自增。

关于android - 如何在 ActiveAndroid ORM 中使字段自动递增,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30692473/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com