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
Currently, DBFField writes zero values for the reserved fields (line 283 and below). Why not write the approppriate fields instead?
javadbf/src/main/java/com/linuxense/javadbf/DBFField.java
Line 283 in aef1fe9
Proposed change:
// data type out.writeByte(this.type.getCode()); /* 11 */ out.writeInt(DBFUtils.littleEndian(this.reserv1)); //0x00); /* 12-15 */ out.writeByte(this.length); /* 16 */ out.writeByte(this.decimalCount); /* 17 */ out.writeShort(DBFUtils.littleEndian(this.reserv2)); //(short) 0x00); /* 18-19 */ out.writeByte(this.workAreaId); //(byte) 0x00); /* 20 */ out.writeShort(DBFUtils.littleEndian(this.reserv3)); //(short) 0x00); /* 21-22 */ out.writeByte(this.setFieldsFlag); //(byte) 0x00); /* 23 */ out.write(this.reserv4); //new byte[7]); /* 24-30 */ out.writeByte(this.indexFieldFlag); //(byte) 0x00); /* 31 */
The text was updated successfully, but these errors were encountered:
66f7f4d
add more Supported language codes in auto detection
3697004
Fixes #104
albfernandez
No branches or pull requests
Currently, DBFField writes zero values for the reserved fields (line 283 and below). Why not write the approppriate fields instead?
javadbf/src/main/java/com/linuxense/javadbf/DBFField.java
Line 283 in aef1fe9
Proposed change:
The text was updated successfully, but these errors were encountered: