Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

The 'VFPOLEDB' provider is not registered

Status
Not open for further replies.

dpdoug

Programmer
Nov 27, 2002
455
US
I'm trying to connect to a FoxPro database from .NET

I've downloaded and registered the provider from Microsoft.

When I run the test I get this error

The 'VFPOLEDB' provider is not registered on the local machine

Here's my connection string:
Code:
   Dim cnn As OleDbConnection
   cnn = New OleDbConnection()
   cnn.ConnectionString = "Provider=VFPOLEDB;" & _
       "DataSource=C:\testing\reqsys.dbc;" & _
       "Mode=ReadWrite|Share Deny None;Collating" & _
       "Sequence=MACHINE;Password=''"
   
   cnn.Open()

 
Could be a security problem. See:


boyd.gif

craig1442@mchsi.com
"Whom computers would destroy, they must first drive mad." - Anon​
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top