Android 数据库 - 外键
有人可以澄清 Android 数据库环境中的外键吗?
我已经成功地建立了具有所有附加功能的数据库。
但我找不到有关如何使用外键连接两个数据库的工作信息?
Can someone clarify foreign keys in the Android database environment?
I have successfully established the databases with all the bells and whistles.
But I can't find working information on how to connect two databases with foreign keys?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有理由链接数据库,所以我假设你指的是表。您可以使用
references row(table)
语句将一个表中的 ID 引用到另一个表中,从而轻松链接表。我的数据库在一个表中包含学生,在另一个表中包含成绩。各年级
通过 id 引用学生,如下所示:
表学生:
表成绩:
There is no reason to link databases, so I assume you mean tables. You can easily link tables by referring an id in one table to another using the
references row(table)
statement.My database has students in one table and grades in another. Each grade
refers to the student by id like this:
Table Students:
Table Grades:
查看有关外键主题的 SQLite 文档。
Have a look at the SQLite documentation on the topic Foreign Key.