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");
答案 0 :(得分:0)
仅提供少量信息,我就找到了解决未指定错误的可能方法。
您尝试使用“命名实例”-> DESKTOP-EAJQ95G \ SQLExpress连接到SQL Server。
因此,您需要在ConnectionString中引用该实例名称。
con.ConnectionString = "Data Source=DESKTOP-EAJQ95G\\SQLExpress;Initial Catalog=AdventureWorks2014;Integrated Security= True;";