Closed. This question is not reproducible or was caused by typos 。它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 Stack Overflow 的 on-topic

6年前关闭。



Improve this question




我需要帮助。我懂了:
SqlConnection sc = new SqlConnection("Data Source=(LocalDB)\\v11.0; Integrated Security=SSPI" + "AttachDbFilename=E:\\user\\program\\Database1.mdf");

我尝试将 Integrated Security 设置为 True 甚至 False 。它们都不起作用。帮助!

最佳答案

显然,您在 SSPI 之后缺少一个分号,因此参数被读取为 SSPIAttachDbFilename=E:\\user\\program\\Database1.mdf,这不是集成安全的有效值。

这应该有效。

var sc = new SqlConnection("Data Source=(LocalDB)\\v11.0; Integrated Security=SSPI;"
                               + "AttachDbFilename=E:\\user\\program\\Database1.mdf")

关于c# - 键 'integrated security' 的值无效,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26546297/

10-13 06:22