-
Notifications
You must be signed in to change notification settings - Fork 1
Home
rthoth edited this page Aug 3, 2015
·
3 revisions
A n-th indexed DBF reader
A small example:
var Dbf = require("idbf").Dbf;
var dbf = new Dbf("questions.dbf");
dbf.get(42, function(err, record) {
if (err)
console.log("Houston! We have a problem!");
else
console.log("The universal question is mine!\n%j", record);
});
This work is incomplete, I need support more data types!
At moment these are supported datatypes:
DBF DataType | Observations |
---|---|
C | Support only ISO-8859-1 |
N | Numeric like text |
- [DBF](Dbf Reference)