tmsoft_dbase 0.0.7

A Rust library for working with DBF files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use tmsoft_dbase::dbfutils::dbf;
 fn main()  -> Result<(), Box<dyn std::error::Error>>{
    let path = "/Users/zhoujiandong/Downloads/sbk.dbf";
    let records = dbf::read_dbf_concurrent(path)?;
    
    for record in records {
        for (name, value) in record {
            println!("{} -> {:?}", name, value);
        }
    }
    
    
    Ok(())
 }