DBFFile icon indicating copy to clipboard operation
DBFFile copied to clipboard

Read and write .dbf (dBase III and Visual FoxPro) files in Node.js

Results 12 DBFFile issues
Sort by recently updated
recently updated
newest added

Does the library support stream eg ```javascript const readStream = fs.createReadString('\path to dbf file") readStream.pipe('process a row in the dbf file") ```

When amount has decimal places for example 175,50 the created dbf file is empty, if the amount is 175.00 the file is not empty. Tried { name: 'amount', type: 'N',...

I wanted to use the DBF reader within the browser. By default, the file system is not available in the browser. However, using the browser's file API and FileReader, I've...

Hi, I found that this library can read the FoxPro 2.x with memo field database just by simply adding the DBF Version 0xF5. I tested and it works well.

Implemented logic to read CURRENCY ('Y') and NULL_FLAGS ('0') field types.

Addresses #71 I converted the existing `readRecordsFromDBF` function into an async generator to yield records one at a time and replaced `readRecordsFromDBF` with a wrapper around this new function. All...

Hi thank you for the great work! I'm fairly new to DBF files, and unfortunately I can't find much documentation online about DBF specifications. Does this package (or DBF files...

I had an issue with a super-old (from 90s) dbf file. Developer created a 256 characters long text field. I didn't notice the real issue since I was using loose...

I got "Type 'Y' is not supported" Error to read a DBF. And I searched the Y field type by google, got https://stackoverflow.com/questions/33774148/get-fieldtype-of-dbf-file . There is one command mentioned "'Y'...