本文介绍了如何将Paradox转换为Excel的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试使用Paradox文件并将其转换为Excel文件。
I am trying to work with Paradox files and convert these to an Excel file.
有没有人知道如何实现这种转换?
Does anyone know how to achieve such conversion?
推荐答案
写了一个小Python脚本来阅读Paradox .DB文件。
但请小心,不完整:某些字段类型可能无法转换(仅备忘AFAIK,但我不是悖论专家)。
I wrote a small Python script to read Paradox .DB files.But please be careful, it's not complete: some field types may not be converted (only memos AFAIK, but I'm not a Paradox expert).
您可以使用 paradox.read('your_file.DB')
将.DB文件读取为Python对象,也可以将其转换为CSV文件 paradox.to_csv('your_file.DB')
。
You can either read a .DB file as Python objects using paradox.read('your_file.DB')
or convert it to a CSV file using paradox.to_csv('your_file.DB')
.
这篇关于如何将Paradox转换为Excel的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!