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
Had a problem when reading the header of DBF file: FZAPLATY.zip
the fix/workaround in my case was to add condition t_byte == 0 in DotNetDBF.DbField.Read
if (t_byte == DBFFieldType.EndOfField **|| t_byte == 0**) { //System.out.println( "End of header found"); return false; }
Otherwise the "empty" fields was read (reading was already consuming the rest of DBF file).
With this additional condition the file is read correctly.
The file was creates with Alaska XBase++ and is a valid DBF file.
The error occured on some of the files I was reading (but not all).
The text was updated successfully, but these errors were encountered:
try this.
#34
Sorry, something went wrong.
No branches or pull requests
Had a problem when reading the header of DBF file:
FZAPLATY.zip
the fix/workaround in my case was to add condition t_byte == 0 in DotNetDBF.DbField.Read
Otherwise the "empty" fields was read (reading was already consuming the rest of DBF file).
With this additional condition the file is read correctly.
The file was creates with Alaska XBase++ and is a valid DBF file.
The error occured on some of the files I was reading (but not all).
The text was updated successfully, but these errors were encountered: