Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Read FoxPro Memo (FPT) #18

Open
dpedrelli opened this issue Apr 26, 2017 · 2 comments
Open

Read FoxPro Memo (FPT) #18

dpedrelli opened this issue Apr 26, 2017 · 2 comments

Comments

@dpedrelli
Copy link

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?

@jbtule
Copy link
Member

jbtule commented May 30, 2017

Don't currently support Fox Pro only clipper.

@jbtule jbtule changed the title Read Memo Read FoxPro Memo (FPT) May 30, 2017
@c1sc0
Copy link

c1sc0 commented Sep 27, 2022

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants