DbfDataReader Versions Save

DbfDataReader is a small fast .Net Core library for reading dBase, xBase, Clipper and FoxPro database files

v0.5.2

5 years ago

Thanks to @dustykline for the fix to allow DbfDataReader to be constructed with a stream reference.

v0.5.1

5 years ago

Fixes reading null values. Closes #16

0.5.0

5 years ago

Adds DbfDataReaderOptions allowing skipping of deleted records and settings the encoding e.g.

var options = new DbfDataReaderOptions
{
    SkipDeletedRecords = true,
    Encoding = Encoding.GetEncoding("WINDOWS-1251")
};

using (var dbfDataReader = new DbfDataReader(FixturePath, options))
{
    while (dbfDataReader.Read())
    {
        // user code
    }
}

0.4.3

5 years ago
  • Fixes encoding issues on reading string values #19

0.4.1

6 years ago

Fixes #6 DbfTable => IsClosed is inverted (thanks @djmulder)

0.4.0

7 years ago

Targets NET452 Fixes dependencies Fixes compilation warnings

0.3.0

7 years ago

0.2.0-alpha

7 years ago

Renamed to DbfDataReader to avoid conflict with NuGet package created 3 days earlier

0.1.0-alpha

7 years ago