I add Some data of list in DbFlow Databse but when I want that data get only one from list .
Here is my code for reference
for(i in path.indices){
val image_off_obj=UserObject()
image_off_obj.image_path=path[i].toString()
image_off_obj.save()
}
下面的语法是用于从数据库中获取数据,但我仅从中获取一种。 //输出 val image_data = SQLite 。选择() .from(UserObject :: class.java) .queryList()
答案 0 :(得分:0)
使用autoincrement = true在数据库中添加一个ID。 像这样:->
@Column
@PrimaryKey(autoincrement = true)
var image_id :Int =0