Example dBase Files

I am working on a program that will have to read different dBase files. I can only find dBaseIII plus files for testing. Does anyone know where I can find a test suite or something else? I need to test this code on different versions of dBase.

+3


source to share


1 answer


I have put together a collection of dBase files representing most versions for testing my own software.

You can find them all here:

https://github.com/infused/dbf/tree/master/spec/fixtures



All files are named with a dBase version code (you can find the version code descriptions 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

      

These 6 make up most of the files I've seen in the wild. Unfortunately I don't have a good test file for dBase V.

+5


source







All Articles