搁置:db类型无法确定

时间:2015-01-25 02:57:31

标签: python python-3.4 shelve

我正在使用Pycharm。首先,每当在Pycharm中导入任何模块时。完整的进口线淡出。但是在import shelve的情况下不会淡出。此外,当我运行该文件时,我得到以下错误:

Traceback (most recent call last):
  File "/Users/abhimanyuaryan/PycharmProjects/shelve/main.py", line 13, in <module>
    s = shelve.open("file.dat")
  File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/shelve.py", line 239, in open
    return DbfilenameShelf(filename, flag, protocol, writeback)
  File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/shelve.py", line 223, in __init__
    Shelf.__init__(self, dbm.open(filename, flag), protocol, writeback)
  File "/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/dbm/__init__.py", line 88, in open
    raise error[0]("db type could not be determined")
 dbm.error: db type could not be determined

这是我的代码:

import shelve

s = shelve.open("file.dat")

s["first"] = (1182, 234, 632, 4560)
s["second"] = {"404": "file is not present", "googling": "Google to search your content"}
s[3] = ["abhilasha", "jyoti", "nirmal"]

s.sync()

print(s["first"])
print(s["second"])
print(s[3])

2 个答案:

答案 0 :(得分:6)

OP在评论中解释'file.dat'pickle创建 - 这就是问题所在! pickle 使用任何数据库格式 - 它使用自己的格式!首先使用file.dat创建shelve(即当shelve尚不存在时运行file.dat并将内容保存到其中)并且您会没事的。< / p> OP在评论中说:“在这种情况下,我仍然没有得到什么问题”。答:问题是pickle shelve可以使用的任何数据库格式创建文件。使用单个模块进行序列化和反序列化 - 只需pickle,或仅shelve - 它会更好地工作: - )。

答案 1 :(得分:1)

anydb https://bugs.python.org/issue13007存在一个错误,无法为gdbm文件使用正确的标识。

因此,如果您尝试使用搁置打开一个有效的gdbm文件并且正在使用此错误:

    mod = __import__("gdbm")
    file = shelve.Shelf(mod.open(filename, flag))