Android 房间自动增量不起作用
Android room autoincrement do not working
我尝试在我的项目中整合空间。我使用标准房间 autorGenerate = true
字段,但它不起作用。我将新对象添加到 db,然后从 db 获取。所有字段 product_id 都以某种方式为空。我在创建产品时创建的所有其他文件在我看来 values.It
@PrimaryKey(autoGenerate = true)
public Integer object_id;
不生成任何东西。为什么这样?
@Entity
public class Prodcut {
@PrimaryKey(autoGenerate = true)
public Integer product_id;
@ColumnInfo(name = "name")
public String name;
@ColumnInfo(name = "is_cloud")
public Integer is_cloud;
@ColumnInfo(name = "user_id")
public Integer user_id;
}
请使用 int 而不是 Integer。
我尝试在我的项目中整合空间。我使用标准房间 autorGenerate = true
字段,但它不起作用。我将新对象添加到 db,然后从 db 获取。所有字段 product_id 都以某种方式为空。我在创建产品时创建的所有其他文件在我看来 values.It
@PrimaryKey(autoGenerate = true)
public Integer object_id;
不生成任何东西。为什么这样?
@Entity
public class Prodcut {
@PrimaryKey(autoGenerate = true)
public Integer product_id;
@ColumnInfo(name = "name")
public String name;
@ColumnInfo(name = "is_cloud")
public Integer is_cloud;
@ColumnInfo(name = "user_id")
public Integer user_id;
}
请使用 int 而不是 Integer。