Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Kalimehtar/binary-class-dbf

Interface for reading/writing DBF (DBase, Foxbase, ...) files
https://github.com/Kalimehtar/binary-class-dbf

Last synced: about 2 months ago
JSON representation

Interface for reading/writing DBF (DBase, Foxbase, ...) files

Awesome Lists containing this project

README

        

binary-class-dbf
================

Interface for reading/writing DBF (DBase, Foxbase, ...) files

To test run

```racket
(require binary-class/dbf binary-class)
(define stream (open-input-file "test.dbf")) ; put your DBF file instead of test.dbf
(define db (read-value dbf-header% stream))
(send db read-record stream) ; returns first record
(send db read-record stream) ; returns second
```

and so on. To inspect db object you may use get-field. List of field see inside sources.