-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Labels
Description
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?
Reactions are currently unavailable