我想请教一下,在两个表上使用LEFT JOIN
后如何访问对象。我已经在外部文件File.db中定义了表,并将其加载到Android上的Room数据库中。我定义了两个表:
CREATE TABLE Example (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
`name` TEXT NOT NULL,
`description` TEXT,
`source_url` TEXT
);
CREATE TABLE Example_dates (
`id` INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
`example_id` INTEGER NOT NULL,
`color` INTEGER NOT NULL,
`date_from` TEXT,
`date_to` TEXT,
FOREIGN KEY(`example_id`) REFERENCES `Example`(`id`)
);
我的实体是:
@Entity(
tableName = "Example"
)
data class Example constructor(
@PrimaryKey @ColumnInfo(name = "id") var id: Int,
@ColumnInfo(name = "name") var name: String,
@ColumnInfo(name = "description") var description: String?,
@ColumnInfo(name = "source_url") var sourceUrl: String?
)
@Entity(
tableName = "Example_dates",
foreignKeys = arrayOf(
ForeignKey(entity = Example::class, parentColumns = ["id"],
childColumns = ["example_id"]))
)
data class Example_dates constructor(
@PrimaryKey @ColumnInfo(name = "id") var id: Int,
@ColumnInfo(name = "example_id") var exampleId: Int,
@ColumnInfo(name = "color") var color: Int,
@ColumnInfo(name = "date_from") var dateFrom: String?,
@ColumnInfo(name = "date_to") var dateTo: String?
)
Dao对象:
@Dao
interface AnimalDao {
@Query(
"SELECT * FROM example_dates LEFT JOIN example ON example_dates.example_id = example.id")
fun loadAll(): Cursor
}
我正在像这样构建数据库:
RoomAsset
.databaseBuilder(context, AppDatabase::class.java, "File.db")
.build()
有什么办法,如何以不同于Cursor的方式从SQL语句获取合并数据?我尝试将更多字段添加到以data class Example
注释的@Ignore
构造函数中,但是表-“ Expected / Found”中的差异导致错误。还是基于游标的解决方案是正确的实现方式?
谢谢。
答案 0 :(得分:0)
好吧,如官方文档所述https://developer.android.com/training/data-storage/room/accessing-data
“强烈建议不要使用Cursor API,因为它不能保证行是否存在或行包含哪些值。”
所以我尝试用我需要的所有字段创建另一个data class named ExampleDetail
,并在DAO
对象中返回List而不是Cursor。
谢谢。