gpt4 book ai didi

android - 如何避免房间外键错误 - 约束失败(代码 787)

转载 作者:行者123 更新时间:2023-11-29 18:41:03 26 4
gpt4 key购买 nike

我有 3 个实体 - 1 个 child 和 2 个 parent 。2 父实体可能有很多子实体,每个都有自己的。

这是 child :

@Entity(
tableName = "share",
foreignKeys = [
ForeignKey(
entity = Pool::class,
childColumns = ["entity_id"],
parentColumns = ["id"],
onDelete = CASCADE
),
ForeignKey(
entity = Note::class,
childColumns = ["entity_id"],
parentColumns = ["id"],
onDelete = CASCADE
)
]
)
data class Share(

@ColumnInfo(name = "share_id")
@PrimaryKey(autoGenerate = false)
val shareId: String,

@ColumnInfo(name = "entity_id")
val entityId: String,

@ColumnInfo(name = "entityType")
val entityType: Int
)

这是 parent :

@Entity(tableName = "pool")
data class Pool(

@PrimaryKey(autoGenerate = false)
@ColumnInfo(name = "id")
val poolId: String,

@ColumnInfo(name = "category")
val type: Int
)

@Entity(tableName = "note")
data class Note(

@PrimaryKey(autoGenerate = false)
@ColumnInfo(name = "id")
val noteId: String
)

Pool和Note可以有多个Share,Share互不相交,各有特色。

但是当我尝试保存共享时出现下一个错误:

W/System.err: android.database.sqlite.SQLiteConstraintException: FOREIGN KEY constraint failed (code 787)
W/System.err: at android.database.sqlite.SQLiteConnection.nativeExecuteForLastInsertedRowId(Native Method)
W/System.err: at android.database.sqlite.SQLiteConnection.executeForLastInsertedRowId(SQLiteConnection.java:783)
W/System.err: at android.database.sqlite.SQLiteSession.executeForLastInsertedRowId(SQLiteSession.java:788)
W/System.err: at android.database.sqlite.SQLiteStatement.executeInsert(SQLiteStatement.java:86)
W/System.err: at android.arch.persistence.db.framework.FrameworkSQLiteStatement.executeInsert(FrameworkSQLiteStatement.java:50)
W/System.err: at android.arch.persistence.room.EntityInsertionAdapter.insertAndReturnIdsList(EntityInsertionAdapter.java:243)
W/System.err: at com.my_app.data.db.dao.share.ShareDao_Impl.insertShare(ShareDao_Impl.java:114)

如何避免这个错误?

最佳答案

您似乎正试图将两个外键约束放在同一列 (entityId) 上。奇怪的是,SQLite 将允许您使用此设置创建一个表。但是,当您添加新行时,它将检查其外键约束以验证该值是否存在于其他表中。因此,为了成功,您需要在两个表中都有 entityId:

Pool
1|pool1
2|pool2

Note
1|note1

如果我创建一个 entityId = 1 的新共享,这将会成功,因为我有一个 id=1 的池和一个 id=1 的注释。

但是如果我尝试创建 entityId = 2 的共享,外部约束验证将失败,因为没有 id=2 的注释。

您需要重新考虑您的表的结构,这样您就不会在同一列上有多个外键,可能还有一个链接表。

你可以在 SQLite 中测试这个:

PRAGMA foreign_keys=true;

CREATE TABLE pool (id INTEGER PRIMARY KEY, name TEXT);
CREATE TABLE note (id INTEGER PRIMARY KEY, name TEXT);
CREATE TABLE share (id INTEGER PRIMARY KEY, entityId INTEGER, FOREIGN KEY(entityId) REFERENCES pool(id), FOREIGN KEY(entityId) REFERENCES note(id));

insert into pool (name) values ('pool1');
insert into pool (name) values ('pool2');
insert into note (name) values ('note1');

select * from pool;
1|pool1
2|pool2

select * from note;
1|note1

insert into share (entityId) values (1);

insert into share (entityId) values (2);
Error: FOREIGN KEY constraint failed

关于android - 如何避免房间外键错误 - 约束失败(代码 787),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53043558/

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