Where to download `Microsoft ole db provider for visual foxpro 9.0`?

Viewed 3744
3 Answers

The installer for the Visual FoxPro 9 OLEDB Driver appears to be gone from the Microsoft Download Center. Strangely the Visual FoxPro 8 driver is still there. You could use that as long as you don't need features that were introduced in Version 9. You could also use the ODBC driver if you can find it.

Both the OLEDB and ODBC drivers from Microsoft are 32-bit, so your C++ application will need to be 32-bit.

There are various third-party alternatives out there for accessing DBF files:

Devart ODBC Driver For XBase

Progress DataDirect

And various others. The thing to remember about third-party drivers is that they may or may not support indexes, and none of them support Visual FoxPro database stored procedures or triggers.

Related