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
Hi, there is an issue with Character field's length (byte 17 should be considered as hi part of length word for character, see http://www.autopark.ru/ASBProgrammerGuide/DBFSTRUC.HTM ), and here is how I've fixed it:
switch (type) { case Character: length = (fieldBytes[17] << 8) | (fieldBytes[16] & 0xff); break; default: length = fieldBytes[16]; if (length <= 0) length = 256 + length; }
The text was updated successfully, but these errors were encountered:
@deanon can you please make PR and also, add a test for it?
Sorry, something went wrong.
No branches or pull requests
Hi, there is an issue with Character field's length (byte 17 should be considered as hi part of length word for character, see http://www.autopark.ru/ASBProgrammerGuide/DBFSTRUC.HTM ), and here is how I've fixed it:
The text was updated successfully, but these errors were encountered: