Paradox database file

我与影子孤独终老i 提交于 2019-12-22 05:36:40

问题


I found paradox database files with different extension.

There are db file, mb file, dat file, px file, XG0 file, XG1 file, XG2 file, XG3 file, XG4 file, YG0 file, YG1 file, YG2 file, YG3 file and YG4 file.

I already found way to open db file and px file using gnumeric spreadsheet. I found some of needed data from db file. But, rest of data not in db file. So, i have to open rest of files. I cant find software that can read those files.


回答1:


Unfortunately, Borland has never documented the Paradox file format, so there's no definitive information available.

Anyway:

  • the actual data are in the .db files (tables) and .mb files (memo/blob info, at least Paradox level 4)
  • .px files contain primary index information. .xg? / .yg? are for secondary index(es). Those are auxiliary files which Paradox uses to store the indexes
  • the .dat file is more than likely the program's configuration data (try to open it with a text editor, it should contain ASCII text)
  • .val files are for formatting / constraint handling
  • .sc files are script, .qbe queries

So your data are in .db/.mb files. If something is missing you could have corrupted files. Try Paradox file repair (see link below) with a copy of your data.

Further details:

  • Paradox Specifications
  • Paradox file repair
  • pxlib. Library to read and write Paradox databases
  • How to open the .db paradox file
  • BB's Database Desktop. Replaces and extends Borland Database Desktop, which is not free. The goal of this project is to implement the functions of the original Database Desktop and add some useful features.



回答2:


As was stated, the DB and MB files were the only files that contained data. PX and the XG/YG pairs were simply indexes with no new data. Paradox tables (DB and MB) could be password encrypted, which may be why you could not read the data, if you do not have the password.



来源:https://stackoverflow.com/questions/26671089/paradox-database-file

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