如何在SQL数据库上创建连接字符串

时间:2015-11-24 05:27:00

标签: .net sql-server-2008 web-config

您好,我在Microsoft SQL Server管理中使用的数据库为\ DesktopHat / SQLEXPRESS /数据库/网络挂接

每当保存数据库的行执行时,我都会收到错误

我的连接字符串是什么东西?

  <connectionStrings>
<add name="DefaultConnection" providerName="System.Data.SqlClient" connectionString="Data Source=DesktopHat\SQLEXPRESS;Initial Catalog=aspnet-webhooks-20151117232236;Integrated Security=SSPI" />
    <add name="DBContextEntity" connectionString="metadata=res://*/DBContext.csdl|res://*/DBContext.ssdl|res://*/DBContext.msl;provider=System.Data.SqlClient;provider connectionstring=data source=DesktopHat\SQLEXPRESS;initial catalog=webhooks;integrated security=True;multipleactiveresultsets=True;App=EntityFramework;" providerName="System.Data.EntityClient" />

  </connectionStrings>

我目前正在使用.NET和SQL

1 个答案:

答案 0 :(得分:0)

错误可能来自数据库名称:

  

初始目录= aspnet-webhooks-20151117232236

初始目录应该是您要使用的数据库的名称。

可能与SQL数据库可访问性, 如果您具有Windows身份验证,则给定的连接字符串将起作用,如果您的SQL服务器支持Windows身份验证,则它将起作用

当保存数据库行执行时,

可能与您提供的连接字符串有关。

  

name =“DefaultConnection”或name =“DBContextEntity”