집 >데이터 베이스 >MySQL 튜토리얼 >SQLExpress 数据库文件自动创建错误:
转自:http://www.cnblogs.com/lpyyun/archive/2012/02/08.html 在与 SQL Server 建立连接时出现与网络相关的或特定于实例的 错误 。未找到或无法访问服务器。请验证实例名称是否正确并且 SQL Server 已配置为允许远程连接。 (provider: SQL Network Interfa
转自:http://www.cnblogs.com/lpyyun/archive/2012/02/08.html
连接字符串使用应用程序 App_Data 目录中的数据库位置指定了一个本地 SQL Server Express
实例。由于提供程序确定应用程序服务数据库不存在,因此尝试自动创建该数据库。要成功检查应用程序服务数据库是否存在并自动创建应用程序服务数据库,必须满足下列配置要求:
解决方案:
运行“WINDOWS/Microsoft.NET/Framework/【.net版本】/aspnet_regsql.exe”按照提示按照数据库
在web.config文件的connectionStrings下加入一段连接字符串的配置:
<connectionstrings> <remove name="LocalSqlServer"></remove> <add name="LocalSqlServer" connectionstring="Data Source=localhost;Initial Catalog=【<strong><span ><strong>数据库</strong>名称】</span></strong>; Integrated Security=True" providername="System.Data.SqlClient"></add> </connectionstrings>