sqlite foreign key mismatch 外键配置错误

 
foreign key mismatch
原来sqlite建表的时候,不会报外键约束错误,只有当你要删除的时候,才会报错误


sqlite> PRAGMA foreign_keys = ON;
设置外键级联有效;


我检查了我的建表语句,果然外键约束是错误的。

官网上是这样较我们的。

  • The parent table does not exist,or
  • The parent key columns named in the foreign key constraint do not exist,or
  • The parent key columns named in the foreign key constraint are not the primary key of the parent table and are not subject to a unique constraint using collating sequence specified in the CREATE TABLE,or
  • The child table references the primary key of the parent without specifying the primary key columns and the number of primary key columns in the parent do not match the number of child key columns.
参考: http://www.sqlite.org/foreignkeys.html

相关文章

安装 在Windows上安装SQLite。 访问官网下载下Precompliled Binaries for Windows的两个压缩包。 创建s...
一、安装 下载地址:http://www.sqlite.org/download.html 将Precompiled Binaries for Windows下的包下...
实例: 会员信息管理 功能:1.查看数据库 2.清空数据库 3.增加会员 4.删除会员 5.更新会员 6.查找会员  ...
关于SQLite SQLite是一个轻量的、跨平台的、开源的数据库引擎,它的在读写效率、消耗总量、延迟时间和整...