Skip to content

rthoth/idbf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

idbf

A n-th indexed DBF reader (0-indexed)

Build Status Dependency Status devDependency Status

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

About

a n-th indexed DBF reader (0-indexed)

Resources

License

Stars

Watchers

Forks

Packages

No packages published