dotnetdbf
dotnetdbf copied to clipboard
Read FoxPro Memo (FPT)
I am accessing a FoxPro table
using (Stream dbf = File.Open(CompanyTable(), FileMode.Open, FileAccess.Read)) using (Stream fpt = File.Open(CompanyMemo(), FileMode.Open, FileAccess.Read)) { using (var reader = new DBFReader(dbf) { DataMemo = fpt }) {
When I try to read the value of a memo field, I get an error: Evaluating the function 'DotNetDBF.MemoValue.ToString' timed out and needed to be aborted in an unsafe way.
Is it possible to read memo fields?
Don't currently support Fox Pro only clipper.
I partially implemented fox pro FPT support, but needs more testing and the code "just works" (https://github.com/c1sc0/dotnetdbf)