无法使用配置管理器连接到SQL Server

时间:2016-01-18 21:32:34

标签: sql asp.net sql-server

我正在尝试使用配置管理器连接到SQL Server数据库。

配置文件代码:

<connectionStrings>
    <add name="DBCS"
         connectionString="data source =.\\SQLEXPRESS; database = Sample2; integrated security = SSPI;"
         providerName ="System.Data.SqlClient" />
</connectionStrings>

下面的C#代码:

string SC = ConfigurationManager.ConnectionStrings["DBCS"].ConnectionString;

//string SC = ("data source =.\\SQLEXPRESS; database = Sample2; Integrated Security = SSPI;");
SqlConnection con = new SqlConnection(SC);

SqlCommand cmd = new SqlCommand("Select * from tblemployee", con);
con.Open();

GridView1.DataSource = cmd.ExecuteReader();
GridView1.DataBind();

当我尝试运行应用程序时,我在

处收到错误
con.Open();

错误:

  

类型&#39; System.InvalidOperationException&#39;的例外情况发生在System.Data.dll中但未在用户代码中处理

     

其他信息:实例失败。

请帮忙。

1 个答案:

答案 0 :(得分:2)

您的连接字符串中.eq(1)之前只需要一个\

SQLExpress

查看documentation了解更多详情