如何设置SQL Server连接?

时间:2019-07-14 14:46:38

标签: sql-server xml

SqlConnection con    = new SqlConnection();
con.ConnectionString = "Data Source=SQLExpress1;Initial Catalog=AdventureWorks2014;Integrated Security= True;";
SqlDataAdapter da    = new SqlDataAdapter("Select * from HumanResources.Employee;", con);
DataSet ds           = new DataSet();
da.Fill(ds, "HumanResources.Employee");
ds.WriteXml("D:\\EmployeeDetails.xml");

image

1 个答案:

答案 0 :(得分:0)

仅提供少量信息,我就找到了解决未指定错误的可能方法。

您尝试使用“命名实例”-> DESKTOP-EAJQ95G \ SQLExpress连接到SQL Server。

因此,您需要在ConnectionString中引用该实例名称。

con.ConnectionString = "Data Source=DESKTOP-EAJQ95G\\SQLExpress;Initial Catalog=AdventureWorks2014;Integrated Security= True;";

像这里提到的Yuriy https://stackoverflow.com/a/14495443