Connection strings for Visual FoxPro / FoxPro 2.x
OLE DB providers for Visual FoxPro / FoxPro 2.x
.NET libraries for Visual FoxPro / FoxPro 2.x
- .NET Framework Data Provider for OLE DB - OleDbConnection
- .NET Framework Data Provider for ODBC - OdbcConnection
ODBC drivers for Visual FoxPro / FoxPro 2.x
VFP OLE DB Provider
Usage Provider=vfpoledb
Manufacturer Microsoft
Database container (.DBC)
Free table directory
Connect to a single DBF-file
Force the provider to use an ODBC DSN
.NET Framework Data Provider for OLE DB
Usage System.Data.OleDb.OleDbConnection
Manufacturer Microsoft
Use an OLE DB provider from .NET
See the respective OLEDB provider's connection strings options. The .net OleDbConnection will just pass on the connection string to the specified OLEDB provider. Read more here.
Microsoft Visual FoxPro ODBC Driver
Usage Driver={Microsoft Visual FoxPro Driver}
Manufacturer Microsoft
Database container (.DBC)
Note that DELETED=NO will cause the driver to include deleted rows in the resultset. To not retrieve deleted rows specify DELETED=YES. The terminology is a bit confusing here, a more appropriate keyword would have been IGNORE DELETED instead of DELETED.
Free Table directory
Note that DELETED=NO will cause the driver to include deleted rows in the resultset. To not retrieve deleted rows specify DELETED=YES. The terminology is a bit confusing here, a more appropriate keyword would have been IGNORE DELETED instead of DELETED.
.NET Framework Data Provider for ODBC
Usage System.Data.Odbc.OdbcConnection
Manufacturer Microsoft
Use an ODBC driver from .NET
See the respective ODBC driver's connection strings options. The .net OdbcConnection will just pass on the connection string to the specified ODBC driver. Read more here.