dotnetdbf icon indicating copy to clipboard operation
dotnetdbf copied to clipboard

Read FoxPro Memo (FPT)

Open dpedrelli opened this issue 8 years ago • 2 comments

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?

dpedrelli avatar Apr 26 '17 02:04 dpedrelli

Don't currently support Fox Pro only clipper.

jbtule avatar May 30 '17 17:05 jbtule

I partially implemented fox pro FPT support, but needs more testing and the code "just works" (https://github.com/c1sc0/dotnetdbf)

c1sc0 avatar Sep 27 '22 12:09 c1sc0