我正在开发一个需要读取不同dBase文件的程序。我似乎只能找到用于测试的dBaseIII plus文件。谁知道我在哪里可以找到测试包或者别的什么?我需要在不同版本的dBase上测试这段代码。
发布于 2015-07-17 07:30:29
我拼凑了一个代表大多数版本的dBase文件集合,用于测试我自己的软件。
你可以在这里找到它们:
https://github.com/infused/dbf/tree/master/spec/fixtures
这些文件都使用dBase版本代码命名(您可以在here中找到版本代码描述):
dbase_03.dbf dBase III without memo file
dbase_30.dbf Visual FoxPro
dbase_31.dbf Visual FoxPro with AutoIncrement field
dbase_83.dbf dBase III with memo file
dbase_8b.dbf dBase IV with memo file
dbase_f5.dbf FoxPro with memo file这6个文件占了我在野外看到的大多数文件。不幸的是,我没有一个好的dBase V测试文件。
https://stackoverflow.com/questions/31397633
复制相似问题