Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion FastDBF/DbfHeader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,8 @@ public void Read(BinaryReader reader)
// type of reader.
int nFileType = reader.ReadByte();

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

// parse the update date information.
Expand Down