A fully managed .NET library for reading dBASE (.dbf) files.
- Fast and lightweight
- Full async support
Supported platforms:
- .NET 4.0 +
- .NET Standard 1.3 (without
AsDataTable
methods) - .NET Standard 2.0+
using (var table = Table.Open(@"D:\mytable.dbf"))
{
var reader = table.OpenReader(Encoding.ASCII);
while (reader.Read())
{
var row = new MyRow()
{
Text = reader.GetString("TEXT"),
DateTime = reader.GetDateTime("DATETIME"),
IntValue = reader.GetInt32("INT"),
DecimalValue = reader.GetDecimal("DECIMAL"),
BooleanValue = reader.GetBoolean("BOOL")
};
}
}
Install Visual Studio 2019+
Clone the repository and run build.cmd
from Developer Command Prompt for VS
.
Run the run-tests.cmd
batch file.