yellowfeather / DbfDataReader

DbfDataReader is a small fast .Net Core library for reading dBase, xBase, Clipper and FoxPro database files
MIT License
134 stars 61 forks source link

Fixes reading of number columns with length > 10 #130

Closed chrisrichards closed 3 years ago

chrisrichards commented 3 years ago

Adds DbfValueInt64 which is used for number columns with a length greater than 10 as the value may be greater than Int32.MaxValue.

Closes #33 Closes #98