我的计算机上安装了SQL Server 2014,并且在SQL Server Management Studio中连接到服务器对话框我使用以下凭据进行日志记录
Server name: .\
Auth. windows authentication
User name: MYPC\LENOVO W540
Password:
成功登录后,我的数据库可通过以下名称访问:
DB_74432_sales
问题是:我应该如何在web.config
中构建我的连接字符串?
我试过了:
<add name="DbConnectionString"
connectionString="Data Source=.\;Database=DB_74432_sales;Integrated Security=True;" />
有人可以确认我这是错误的,因为我收到的错误消息是找不到实例名称
答案 0 :(得分:0)
如果您发现DB_74432_sales位于SQL Server Management Studio中对象资源管理器的顶部,那么这就是您的连接字符串的形成方式。
<add name="DbConnectionString"
connectionString="Data Source=DB_74432_sales;Database=[Name of your Database];Integrated Security=True;" />
您在对象资源管理器中单击的数据库名称,通常是节点的第3级。