124697
124697

Reputation: 21893

Unknown provider name 'OraOLEDB.Oracle.1' Parameter name error

What do I need to download to resolve this error?

edit:

I've got the following connection string on an application that requires a connection string o connect to the database

Provider=OraOLEDB.Oracle.1;Password=pass;Persist Security Info=True;User ID=username;Data Source=db;PLSQLRSet=1

when I try to retrieve colmns for a data table I get that error

Upvotes: 0

Views: 4257

Answers (1)

J. Bend
J. Bend

Reputation: 309

Are you on windows? If so open the "ODBC Data Source Administrator" in win 7 or go to Control Panel -> Administrative Tools -> Data Sources (ODBC) and go to the "Drivers" tab, check that the name attribute of the list matches with the "Provider" in the connection string.

Ex. connection string: Provider=OraOLEDB.Oracle.1 In the drivers list: Name=OraOLEDB.Oracle.1 Version=xxx

Upvotes: 1

Related Questions