Why aren#39;t my sqlite3 foreign keys working?(为什么我的 sqlite3 外键不起作用?)
问题描述
我从 python 解释器运行以下代码,并期望插入语句失败并引发某种异常.但它没有发生:
I run the following code from a python interpreter, and expect the insert statement to fail and throw some kind of exception. But it's not happening:
Python 2.6.5 (r265:79096, Mar 19 2010, 21:48:26) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import sqlite3
>>> conn = sqlite3.connect("test.db")
>>> conn.executescript("""
... pragma foreign_keys=on;
... begin transaction;
... create table t1 (i integer primary key, a);
... create table t2 (i, a, foreign key (i) references t1(i));
... commit;
... """)
<sqlite3.Cursor object at 0x0229DAA0>
>>> c = conn.cursor()
>>> c.execute("insert into t2 values (6, 8)")
<sqlite3.Cursor object at 0x0229DAD0>
>>> #???
...
>>> conn.commit()
>>> #???????????
...
>>> c.execute("select * from t2")
<sqlite3.Cursor object at 0x0229DAD0>
>>> c.fetchall()
[(6, 8)]
>>> #but why!?
...
>>>
有谁知道为什么这不起作用?我的理解是插入应该失败,因为我为 t2(i)
提供的值不是 t1
中的主键,但无论如何它很乐意这样做......?
Does anyone know why this doesn't want to work? My understanding is that the insert should fail since the value I gave for t2(i)
isn't a primary key in t1
, but it happily does it anyway...?
推荐答案
SQLite 中的工作外键支持是非常新的——它仅在 10 月 14 日的 3.6.19 中发布.您确定您使用的是 SQLite 3.6.19 或更高版本吗?
Working foreign key support in SQLite is very new -- it was only released in 3.6.19 on October 14th. Are you sure you're using SQLite 3.6.19 or later?
检查 sqlite3 模块中的 sqlite_version 常量.例如.在默认安装 python/sqlite 的 Mac OS X 10.6 系统上:
Check the sqlite_version constant in the sqlite3 module. E.g. on a Mac OS X 10.6 system with the default python/sqlite install:
>>> import sqlite3
>>> sqlite3.sqlite_version
'3.6.12'
>>>
这篇关于为什么我的 sqlite3 外键不起作用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么我的 sqlite3 外键不起作用?
基础教程推荐
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01