I am trying to find a way to access a database of some management software which uses some kind of raw isam files to store the data. The data folder compromises of of .idx and .fs5 files, I cannot find any evidence of this being a informix type as mentioned in another question here on stackoverflow.
Does anyone have any kind of solution to creating some kind of bridge to the database? I have had no luck finding an open source odbc to c-isam driver, is anyone aware of something that could possibly help here?
FS is possibly a Flagship file, a product that uses the same format as Ashton Tate's dBase III.
This link may help:
If it is a Flagship file, the documentation at the link given above states that the file format for database files (but not indexes apparently) is fully compatible with dBase III so you may be able to find software (dBase, Clipper, FoxPro, Excel et al) that can extract the data if not the index info.
They also handily detail the file format in the LNG section of their docs but dBase III format is well known so you may be able to get more information elsewhere, such as here.
If it turns out to not be a Flagship/dBase file, you'll have to do some more research. The only other thing the internet suggests is that it may be a Flight Simulator file, which seems unlikely :-)
You could try running a
strings
command on the files to see if any vendor-type information shows up.Failing that, it may be that the best solution is to contact the vendor of the management software to see if they'll part with the information. Social engineering like that may provide a quicker solution than trying to reverse engineer the format.