我正在尝试使用 C# 调用存储过程。
我在以下行中遇到问题。
SqlConnection("Server=DB2\XPT;DataBase=SCFHP_EDI_P1;Integrated Security=SSPI");
我无法使用的部分是 server DB2\XPT
。
我需要做什么才能将服务器名称用作DB2\XPT
?
我正在尝试使用 C# 调用存储过程。
我在以下行中遇到问题。
SqlConnection("Server=DB2\XPT;DataBase=SCFHP_EDI_P1;Integrated Security=SSPI");
我无法使用的部分是 server DB2\XPT
。
我需要做什么才能将服务器名称用作DB2\XPT
?
("Server=DB2\\XPT;DataBase=SCFHP_EDI_P1;Integrated Security=SSPI");
或者
(@"Server=DB2\XPT;DataBase=SCFHP_EDI_P1;Integrated Security=SSPI")
如果要避免转义字符串中的字符,则需要转义连接字符串中的反斜杠\
或使用该符号。@
SqlConnection(@"Server=DB2\XPT;DataBase=SCFHP_EDI_P1;Integrated Security=SSPI");
SqlConnection("Server=DB2\\XPT;DataBase=SCFHP_EDI_P1;Integrated Security=SSPI");