Skip to content

Commit 4f62088

Browse files
committed
Merge SocialExplorer/FastDBF SocialExplorer#17 From chripf
1 parent d4e2921 commit 4f62088

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

FastDBF/DbfHeader.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,8 @@ public void Read(BinaryReader reader)
569569
// type of reader.
570570
int nFileType = reader.ReadByte();
571571

572-
if (nFileType != 0x03)
572+
// allow reading of FoxBASE+/dBASE III PLUS, with memo
573+
if (nFileType != 0x03 && nFileType != 0x83)
573574
throw new NotSupportedException("Unsupported DBF reader Type " + nFileType);
574575

575576
// parse the update date information.

0 commit comments

Comments
 (0)