node-dbf
node-dbf copied to clipboard
An efficient dBase DBF file parser written in pure JavaScript
Bumps [pathval](https://github.com/chaijs/pathval) from 1.1.0 to 1.1.1. Release notes Sourced from pathval's releases. v1.1.1 Fixes a security issue around prototype pollution. Commits db6c3e3 chore: v1.1.1 7859e0e Merge pull request #60 from...
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.4 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
As you may have noticed from the lack of activity, this library is no longer being maintained. I no longer have any use cases for DBF files, and many of...
Since NodeJS supported encoding is limited, we could use iconv-lite to handle more character encoding
This should solve the issue of logical fields always returning null. Used if/else statements rather than switch. Fixes #37
Hey, I found this small issue, while the converter was not correct. Now, it's working perfectly for me. Header.prototype.convertBinaryToInteger = function (buffer) { if (buffer.length == 1) return buffer.readUInt8(0); if...
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
Issue #21 Issue #6
Hi, I have this problem reading a DBF file with this PRECIO1,N,14,2 That is a float (I opened the file in Libre Office Calc) Any ideas on how I can...
[Desktop.zip](https://github.com/abstractvector/node-dbf/files/1285882/Desktop.zip) I have a dbf file whose column names are partially alphabets and partially unknown characters. How can I get value of a specific field in this case? I have...