DBF files with C#

  • Thread starter Thread starter bad_boyu
  • Start date Start date
B

bad_boyu

I want to work with DBF/DB files in C#, so I need a library and an
example...
Can somebody help me with this?

Thanks,
BB
 
you can use ODBC for this or some libs for native access like CODEBASE

bad_boyu said:
I want to work with DBF/DB files in C#, so I need a library and an
example...
Can somebody help me with this?

--
WBR,
Michael Nemtsev :: blog: http://spaces.msn.com/laflour

"At times one remains faithful to a cause only because its opponents do not
cease to be insipid." (c) Friedrich Nietzsche
 
Hi,

With ODBC you will have no problem.

One particular problematic thing are the old index db3 had ( .idx I think)
the current ODBC driver has no support for them. post back if this is your
case
 
Hi BB!

You haven't said which application the DBFs were created with, and there is
more than one table format with the DBF extension. Assuming the DBFs are
FoxPro DBFs you can use the FoxPro and Visual FoxPro OLE DB data provider,
downloadable from msdn.microsoft.com/vfoxpro/downloads/updates. After that
it's pretty much like any other OLE DB compliant back end.
 
Back
Top