dBASE.NET icon indicating copy to clipboard operation
dBASE.NET copied to clipboard

dBASE reader for .NET

Results 24 dBASE.NET issues
Sort by recently updated
recently updated
newest added

`Working with memo files When memo file accompanying the .dbf file is found (either .dbt or .fpt), with the same base name as the table file, then dBASE.NET will load...

The file that I want to read is a file in a Siemens S7-300 PLC project. Are DBF and DBT extensions different? I know that Siemens is generaly using dbase4

Hi, I verified in https://www.nuget.org/packages/dBASE.NET/ but the last version published there was 1.2.1 Thanks

This code help for skipping deleted rows. (for foxpro dbf) ``` private void ReadRecords(BinaryReader reader, byte[] memoData) { Records.Clear(); // Records are terminated by 0x1a char (officially), or EOF (also...

line 21 of FloatEncoder.cs is... text.Substring(0, field.Length); it needs to be... text = text.Substring(0,field.Length); Line 21 is not assigning the substring to anything.

Whatever I do, i cannot get the memo file to open. Would it not be better to include an extra argument in the Read function that defines the path of...

Added an attribute to be able to map properties in an entity to fields in a DBF. Referencing fields by their index or name is prone to errors and can...

```csharp static void Main(string[] args) { var dbf = new dBASE.NET.Dbf(); var field = new dBASE.NET.DbfField("TEST", dBASE.NET.DbfFieldType.Character, 12); dbf.Fields.Add(field); var record = dbf.CreateRecord(); record.Data[0] = "HELLO"; dbf.Write("test.dbf", dBASE.NET.DbfVersion.VisualFoxPro); } ```...

Hi I have an exception in DbfRecord : Buffer length has exceeded length of the field I have this exception even with your "Writing a DBF file" sample code

'fix' for the henck#10 issue. Added a property in the DbfRecord class, a argument in the Read method of the Dbf class, some methods to mark records as deleted and...