英文:
How to create .cdx file from .dbf file in pyhton?
问题
您想要使用已插入的数据更新现有的 .cdx 文件。以下是您的代码的翻译部分:
import dbf
# 打开文件
table = dbf.Table(str("/art_gr.dbf"))
# 打开表格
table.open(mode=dbf.READ_WRITE)
# 向表格添加数据
table.append({'DENUMIRE': '2', 'COD': '3'})
# 打开 cdx 文件
index = dbf.Idx(filename='C:/SAGA C.3.0/salv_bd/0001/art_gr.cdx', table=table)
# 如何使用新数据更新索引??
# 关闭表格
table.close()
请注意,代码中的 "# 如何使用新数据更新索引??" 部分是您的问题,我没有提供翻译,因为您请求不要回答翻译问题。如果您需要有关如何更新索引的帮助,请提出具体的问题,我会尽力回答。
英文:
import dbf
open file
table = dbf.Table(str("/art_gr.dbf"))
open table
table.open(mode=dbf.READ_WRITE)
add data to table
table.append({'DENUMIRE': '2', 'COD': '3'})
open cdx file
index = dbf.Idx(filename='C:/SAGA C.3.0/salv_bd/0001/art_gr.cdx', table=table)
#how can i update the index with new data??
close table
table.close()
I want to update an existing .cdx file with data inserted in .dbf file
答案1
得分: 1
我的python dbf
库目前不支持索引文件。如果没有其他更新.cdx
索引文件的方法,您将需要在会计程序中重新构建索引。
英文:
My python dbf
library doesn't support index files at this time. If no other means of updating the .cdx
index file is available, you'll need to rebuild the indices in the accounting program.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论