错误信息 :
建立与 SQL Server 的连接时发生与网络相关或特定于实例的错误。服务器未找到或无法访问。验证实例名称是否正确以及 SQL Server 是否配置为允许远程连接。(提供者:SQL 网络接口,错误:26 - 错误定位服务器/指定的实例)
我知道这是数据库无法正确连接的问题,我搜索了很多并尝试了以下方法来修复它[在 connectionStrings 部分下的 web.config 文件中]
1) <add name="LocalSqlServer" connectionString="server=UMBARCO\UMBARCOSQL;database=Umbraco444;user id=xxx;password=xxx; Connection Timeout=300" providerName="System.Data.SqlClient" />
2) <remove name="LocalSqlServer">
<add name="LocalSqlServer" connectionString="server=UMBARCO\UMBARCOSQL;database=Umbraco444;user id=xxx;password=xxx; Connection Timeout=300" providerName="System.Data.SqlClient" />
// now tried to connect at local ,attached the database to local sql server and tried
3)<add name="LocalSqlServer" connectionString="Data Source=xxx\SQLEXPRESS;Initial Catalog=Umbraco444;Integrated Security=True;MultipleActiveResultSets=true;" providerName="System.Data.SqlClient"/>
4)<remove name="LocalSqlServer">
<add name="LocalSqlServer" connectionString="Data Source=xxx\SQLEXPRESS;Initial Catalog=Umbraco444;Integrated Security=True;MultipleActiveResultSets=true;" providerName="System.Data.SqlClient"/>
但他们都没有工作。
有没有人可以帮忙?