tmontaigu / dbase-rs

Rust library to read & write dBase files.
MIT License
29 stars 30 forks source link

add first iteration of dbase::File #49

Closed tmontaigu closed 1 year ago

tmontaigu commented 1 year ago

This new dbase::File struct allows to open a .dbf file in read or write or read+write mode.

This allows to read and modify a file without having to first read eveything using dbase::Reader, make in memory modifications then write using dbase::TableWriter.

close #28