0

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

Does anyone know how to achieve such conversion?

Marcello B.
  • 4,177
  • 11
  • 45
  • 65
Guillermo
  • 327
  • 2
  • 6
  • 20

1 Answers1

2

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

Bertrand Bordage
  • 921
  • 9
  • 16