2

这发生在 python 2.6.6、sqlite3 上。我有一个使用 sqlite 的数据库类。下面是它的初始化部分。

def _init_db(self):
"init the database tables and indices"
    print '\n'.join(DROP_TABLES[0:1])
    print '\n'.join(CREATE_TABLES[0:1])
    print '\n'.join(CREATE_INDEXES[0:1])
    print '\n'.join(CREATE_TRIGGERS[0:1])
    for query in DROP_TABLES:
       self.connection.execute(query)
#   self.connection.commit()
    for query in CREATE_TABLES:
       self.connection.execute(query)
#   self.connection.commit()        
    for query in CREATE_INDEXES:
       self.connection.execute(query)
#   self.connection.commit()
    for query in CREATE_TRIGGERS:
       self.connection.execute(query)            
    self.connection.commit()

这是查询的打印输出。(在我看来它不是很重要,这里是为了完整性)

DROP TABLE IF EXISTS graph_T 

CREATE TABLE IF NOT EXISTS graph_T
(v1 int,
v2 int,
step_start int,
step_end int DEFAULT 2147483647,
value int DEFAULT 1,
path_kind int DEFAULT 0,
path_id long,
partial_path_id long) 

CREATE INDEX IF NOT EXISTS idxgraph_T
          ON graph_T(v1,v2)

CREATE TRIGGER IF NOT EXISTS trig_graph_T_path_id
AFTER INSERT ON graph_T
BEGIN
UPDATE graph_T SET 
path_id = (10000 * 10000 * max(new.v1, new.v2) + 
    10000 * min(new.v1, new.v2) + 0 ) ,
partial_path_id = 10000 * 10000 * max(new.v1, new.v2) + 
    10000 * min(new.v1, new.v2)
WHERE rowid = new.rowid;
END;

我得到 sqlite3.OperationalError:无法在 self.connection.execute 行之一上打开数据库文件。有时是第三个或第四个(它也发生在我程序的其他地方)。

我在窗户上工作。我不确定为什么会发生这种情况以及我做错了什么。将不胜感激任何建议。

更多信息(由于提出的问题): - 我没有使用并发访问。没有线程或类似的东西。

编辑-更多信息:我在所有 connection.execute 行上添加了定时重试,它通常会失败一次或两次,然后就可以工作了。我猜测当执行命令返回时,数据可能并没有真正写入磁盘。

4

3 回答 3

3

我的直觉告诉我,文件系统中肯定有一些可疑的事情发生,而不是软件中。也许其中之一:

  • 备份脚本正在临时移动/重命名文件或父文件夹
  • 文件系统显示为“本地”,但实际上是 SAN,并且存在一些间歇性问题
  • 其他面向文件系统的内核模块,例如透明加密,正在干扰 SQLite 系统调用
  • 入侵检测软件正在干扰 SQLite 系统调用
  • 另一个用户在您不知情的情况下打开文件进行读取
  • 这是一种病毒:-)
于 2012-05-14T15:11:17.370 回答
2

SQLite 不适合并发访问。如果你有多个线程或进程访问同一个数据库文件,你会遇到这个问题。

于 2012-05-13T17:24:09.353 回答
0

并发访问答案帮助我解决了我的问题。我的解决方案本质上是从并发访问发生之前恢复到以前未损坏的数据库文件(https://stackoverflow.com/a/57729827/3869714)。

于 2019-08-30T15:53:48.257 回答