如何使用dbf模块更新记录

时间:2015-12-07 15:25:30

标签: python python-3.x dbf xbase

如何使用dbf模块更新dbf中的记录:https://pypi.python.org/pypi/dbf

以下是我的尝试:

table2 = dbf.Table(filename, codepage="cp1252")
table[0].name = "changed"

但我明白了:

  File "<input>", line 1, in <module>
  File "/venv/lib/python3.4/site-packages/dbf/ver_33.py", line 2508, in __setattr__
    raise DbfError("unable to modify fields individually except in `with` or `Process()`")
dbf.ver_33.DbfError: unable to modify fields individually except in `with` or `Process()`

我设法阅读并附加但不修改数据,我该怎么做?

2 个答案:

答案 0 :(得分:2)

将数据写入记录可以通过几种不同的方式完成:

  • 将记录用作上下文管理器:

    with table[0] as rec: rec.name = "changed"

  • 使用dbf.Process函数处理循环中的多个记录:

    for rec in Process(my_table): rec.name = rec.name.title()

  • 使用write模块中的dbf函数:

    dbf.write(some_record, name='My New Name')

我这样做是为了提高安全性和性能。

答案 1 :(得分:0)

好的,所以我没有理解&#34;使用或处理&#34;部分,但这是我如何设法得到我的方式:

dbf.write(table[0],name="changed")

在那里发现,这个fork有更多的文档https://bitbucket.org/ltvolks/python-dbase

这应该更安全Search in DBF and update record