我有一个这样的连接字符串
<add name="rackleyConnectionString1" connectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\rackley.mdb;Persist Security Info=True;Jet OLEDB:Database Password=Password"
providerName="System.Data.OleDb" />
现在我将该 mdb 文件复制到我的 sql 服务器中。现在我将连接字符串更改为此
<add name="rackleyConnectionString" connectionString="Data Source=ODO-SRV004;Initial Catalog=rackley;Integrated Security=True"
providerName="System.Data.SqlClient" />
当我运行程序时,它显示错误:“连接字符串中未指定 OLE DB 提供程序。例如 Provider=SQLOLEDB”
请帮助解决这个问题。