idbf
v1.0.0
Published
A n-th index DBF Reader
Downloads
6
Readme
idbf
A n-th indexed DBF reader (0-indexed)
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);
});Supported datatypes
DBF DataType | Observations ------------ |------------------------- C | Support only ISO-8859-1 N | Numeric like text


