dbase-rs icon indicating copy to clipboard operation
dbase-rs copied to clipboard

Rust library to read & write dBase files.

Results 8 dbase-rs issues
Sort by recently updated
recently updated
newest added

Hi, I'm interested in extending the functionality of dbase-rs to make it runnable on the web. My use case is that I'm working on a hobby project that targets the...

I have a dbase file that contains a Memo field, however I'm not sure what type I should put in the structure, and there doesn't appear to be any way...

This changes the type of `NamedValue`'s `name` field to be a `Cow` instead of `&str`. The reason I need this change is because in the project we are using this...

Code: ``` use dbase; fn main() { let mut reader = dbase::Reader::from_path("SAL.dbf").unwrap(); for record_result in reader.iter_records() { if let Ok(record) = record_result { for (name, value) in record { match...

I found that when I try to use the serde feature to deserialize a record which contains both character and numeric fields the numeric field (f64) deserialization fails with the...

hi, i'm trying to write a dbf file (from another dbf) and i keep failing with the following traceback: ``` thread 'main' panicked at 'assertion failed: `(left == right)` left:...

![Screenshot 2022-10-11 at 20 13 23](https://user-images.githubusercontent.com/29581161/195168672-47398c14-3b2e-4e64-8b46-c364b8165dc9.png) The field type of "info" is String what should correspond to [Memo](https://docs.rs/dbase/0.3.0/dbase/enum.FieldValue.html#variant.Memo), but the Deserialiser expects a Character field because "info" ist of type...

Is it possible to get support for changing the type of a field? For example: The .dbf file has a "Numeric" field that would be changed into a "Character" field

enhancement