Seesharp
Seesharp

Reputation: 333

Unable to find the requested .Net Framework Data Provider. It may not be installed. (System.Data.SQLClient)

I tried to look at the data connection between my visual studio and SQL server, however it keeps on saying "Unable to find the requested .Net Framework Data Provider. It may not be installed." How can I get this fixed please? It was working before, suddenly it stopped working. I checked in the C:/windows/assembly System.Data.SQLClient is not there.

Upvotes: 3

Views: 13126

Answers (2)

Joel
Joel

Reputation: 7569

In my case I was selecting the worng reference. For some reason x86 works, while x64 does not (in my case). Simply don't forget to reference System.Data.SQLite.dll and/or System.Data.SQLite.Linq.dll.

Upvotes: 0

alwayslearning
alwayslearning

Reputation: 4633

Ensure that the provider factory is registered with an appropriate entry in the machine.config.

Upvotes: 3

Related Questions