You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But, I had problems with DBF columns having lengths >128 characters, which are parsed wrong (i.e. column lengths appear as <0). IMHO, there is a bug in function convertBinaryToInteger() in header.js. The code uses buffer.readIntLE(0, buffer.length) but should use the unsigned version instead: buffer.readUIntLE(0, buffer.length).
Thanks,
Ken
The text was updated successfully, but these errors were encountered:
This code is really helpful and performs well.
But, I had problems with DBF columns having lengths >128 characters, which are parsed wrong (i.e. column lengths appear as <0). IMHO, there is a bug in function convertBinaryToInteger() in header.js. The code uses
buffer.readIntLE(0, buffer.length)
but should use the unsigned version instead:buffer.readUIntLE(0, buffer.length)
.Thanks,
Ken
The text was updated successfully, but these errors were encountered: