Unknown connection option in connection string: provider.

  • Thread starter Thread starter Jose Betances
  • Start date Start date
J

Jose Betances

I set up SQL Server in Computer A, and running a c# application from
computer B. When I attempt to create an SqlConnection object an error
is raised. The message is "Unknown connection option in connection
string: provider." The connection string is standard and do not think
it's the problem because I am using the connection string created by a
Data Connection object I created using Visual Studio .Net. Can anyone
help, Thank you...
 
If you are creating an SqlConnection, option "Provider" is neither needed
nor supported. It is used for OleDbConnection.

HTH,

Eliyahu
 
Back
Top