We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why there was no implementation of the reading of the version of the DBF file?
It is very simple just to read first byte and translate it to the version format to understand what we have loaded.
Byte | Version 0x02 | FoxBase 1.0 0x03 | FoxBase 2.x / dBASE III 0x83 | FoxBase 2.x / dBASE III with memo file 0x30 | Visual FoxPro 0x31 | Visual FoxPro with auto increment 0x32 | Visual FoxPro with varchar/varbinary 0x43 | dBASE IV SQL Table, no memo file 0x63 | dBASE IV SQL System, no memo file 0x8b | dBASE IV with memo file 0xcb | dBASE IV SQL Table with memo file 0xfb | FoxPro 2 0xf5 | FoxPro 2 with memo file
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Why there was no implementation of the reading of the version of the DBF file?
It is very simple just to read first byte and translate it to the version format to understand what we have loaded.
Byte | Version
0x02 | FoxBase 1.0
0x03 | FoxBase 2.x / dBASE III
0x83 | FoxBase 2.x / dBASE III with memo file
0x30 | Visual FoxPro
0x31 | Visual FoxPro with auto increment
0x32 | Visual FoxPro with varchar/varbinary
0x43 | dBASE IV SQL Table, no memo file
0x63 | dBASE IV SQL System, no memo file
0x8b | dBASE IV with memo file
0xcb | dBASE IV SQL Table with memo file
0xfb | FoxPro 2
0xf5 | FoxPro 2 with memo file
The text was updated successfully, but these errors were encountered: