• Stars
    star
    2
  • Language
    Racket
  • License
    MIT License
  • Created almost 10 years ago
  • Updated over 9 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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

binary-class-dbf

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

To test run

(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.