How to convert Paradox to Excel

元气小坏坏 提交于 2019-12-13 03:48:24

问题


I am trying to work with Paradox files and convert these to an Excel file.

Does anyone know how to achieve such conversion?


回答1:


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).

https://gist.github.com/BertrandBordage/9892556

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').



来源:https://stackoverflow.com/questions/19293158/how-to-convert-paradox-to-excel

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!