我尝试使用建议的here方法将表从olddb.sqlite3复制到newdb.sqlite3。
bash-3.2$ cat cp.sql
ATTACH "olddb.sqlite3" AS old;
INSERT INTO feedback_phone SELECT * FROM old.feedback_phone;
bash-3.2$ rm newdb.sqlite3
bash-3.2$ touch newdb.sqlite3
bash-3.2$ sqlite3 newdb.sqlite3 < cp.sql
Error: near line 3: UNIQUE constraint failed: feedback_phone.id_
为什么会这样?我知道id_列由唯一的整数组成:
bash-3.2$ sqlite3 olddb.sqlite3
SQLite version 3.8.5 2014-08-15 22:37:57
Enter ".help" for usage hints.
sqlite> .schema feedback_phone
CREATE TABLE feedback_phone (
id_ INTEGER NOT NULL,
phone VARCHAR,
language VARCHAR,
kind VARCHAR,
user VARCHAR,
timestamp DATETIME,
success BOOLEAN,
url VARCHAR,
PRIMARY KEY (id_),
CHECK (success IN (0, 1))
);
sqlite> select id_ from feedback_phone;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
我将该表从一个数据库复制到一个完全为空的不同数据库中。究竟是什么违反了约束?
答案 0 :(得分:3)
新数据库文件为空,因此它甚至没有该表。
因此,feedback_phone
是指唯一具有该名称的表,即old.feedback_phone
。
将CREATE TABLE语句添加到.sql文件中。