Slow in reading large DBF data files in C#.

  • Thread starter Thread starter Man Nguyen
  • Start date Start date
M

Man Nguyen

Hi,
I am using C# to read large FoxPro data file (DBF). Everything works
fine except it is too slow to load the file in buffer (I think).
Anybody know how to solve this
problem please instruct me how. I am new to C# so I don't
know alternative way of reading data faster from database.
Appreciate your help.
 
Man said:
I am using C# to read large FoxPro data file (DBF). Everything works
fine except it is too slow to load the file in buffer (I think).
Anybody know how to solve this
problem please instruct me how. I am new to C# so I don't
know alternative way of reading data faster from database.

How do you read from the DBF ?

Arne
 
Hi,
I am usingC#to read large FoxPro data file (DBF).  Everything works
fine except it is too slow to load the file in buffer (I think).
Anybody know how to solve this
problem please instruct me how.  I am new toC#so I don't
know alternative way of reading data faster from database.
Appreciate your help.

*** Sent via Developersdexhttp://www.developersdex.com***

Maybe you can read the DBF file directly, don't use the Data provider.
For this solution, you need know the DBF file format, I think you can
get the information from Google.
 
Back
Top