Skip to content
/ dbflib Public
forked from fschutt/dbflib

DBF library for reading and writing dBase III to dBase VII files. Only .dbf file support.

License

Notifications You must be signed in to change notification settings

TenzT/dbflib

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dbflib

Library for reading .dbf files

Usage

#include "DBaseFile.h"
#include <iostream>

int main() {

    DBaseFile dbf = DBaseFile();

    try {
        dbf->openFile("./test/ANSPRECH.DBF");
    } catch(std::runtime_error& e) {
        std::cout << e.what() << std::endl;
    }

    dbf->stat();
    return 0;
}

Installation

git clone https://github.com/fschutt/dbflib
cd dbflib
make && make install

This will generate a libdbf.so file in the root folder, then install it on the system. On Windows, you have to copy the file manually and put the headers where your system can find them.

Documentation

This repository uses doxygen syntax for documentation.

Please refer to http://www.doxygen.org/ for usage instructions.

About

DBF library for reading and writing dBase III to dBase VII files. Only .dbf file support.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 95.9%
  • Makefile 2.1%
  • CMake 1.3%
  • C 0.7%