我在使用存储为 python 临时文件的数据库时遇到了一些来自 sqlite 的奇怪行为。本质上,查询 sqlite_master 表工作正常,但查询另一个表返回:
DatabaseError: database disk image is malformed
源数据库存储为 python 临时文件:
ntf=tempfile.NamedTemporaryFile(suffix='.gdb')
下面是一个查询函数。
def sqliteQ(string,filename):
'''
string= query string
filename= string file name
'''
con=sqlite.connect(filename)
c= con.cursor()
c.execute(string)
out=c.fetchall()
c.close()
return out
我能够像这样成功地查询数据库:
sq=db.sqliteQ("select sql from sqlite_master where type='table' and name='managements'", gdb.name)
In [13]: sq
Out[13]: 'CREATE TABLE managements (path varchar(255), name varchar(255), data varchar(50000), date date, owner varchar(64), password varchar(64), prot text)'
但是以下返回错误:
In[14]: m=db.sqliteQ('select * from managements', gdb.name)
41 con=sqlite.connect(filename)
42 c= con.cursor()
---> 43 c.execute(string)
44 out=c.fetchall()
45 c.close()
/usr/lib/python2.7/dist-packages/sqlite/main.pyc in execute(self, SQL, *parms)
242 if len(parms) == 0:
243 # If there are no paramters, just execute the query.
--> 244 self.rs = self.con.db.execute(SQL)
245 else:
246 if len(parms) == 1 and \
DatabaseError: database disk image is malformed
我可以使用 sqlite 命令行工具成功运行这两个查询。任何建议都是最有帮助的。
彼得
更新
好像只有在使用的时候才会遇到这个问题tempfile
。我正在下载一个 .zip 文件并将随附的 sqlite 数据库读取到并使用此函数cStringIO
写入:tempfile
def tGDB (URLo):
mem=io.StringIO(URLo.read())
zf=zp.ZipFile(mem)
ntf=tempfile.NamedTemporaryFile(suffix='.gdb')
ntf.write(zf.read(zf.namelist()[0]))
return ntf
我想这可能表明从 zip 到 tempfile 的转换管道存在问题,但很奇怪第一个查询有效而第二个查询无效。