We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4e2921 commit 4f62088Copy full SHA for 4f62088
FastDBF/DbfHeader.cs
@@ -569,7 +569,8 @@ public void Read(BinaryReader reader)
569
// type of reader.
570
int nFileType = reader.ReadByte();
571
572
- if (nFileType != 0x03)
+ // allow reading of FoxBASE+/dBASE III PLUS, with memo
573
+ if (nFileType != 0x03 && nFileType != 0x83)
574
throw new NotSupportedException("Unsupported DBF reader Type " + nFileType);
575
576
// parse the update date information.
0 commit comments