C#错误列表显示 :无法识别的转义序列! (Data Source=LENOVO-PC\ACCP) 红色波浪线在A的下面...
//建立数据库连接字符串privatestaticreadonlyStringconnString="DataSource=LENOVO-PC\ACCP;InitialC...
//建立数据库连接字符串
private static readonly String connString = "Data Source=LENOVO-PC\ACCP;Initial Catalog=Test;Persist Security Info=True;User ID=sa;Password=***********";
该如何解决呢??? 请高手指点... 展开
private static readonly String connString = "Data Source=LENOVO-PC\ACCP;Initial Catalog=Test;Persist Security Info=True;User ID=sa;Password=***********";
该如何解决呢??? 请高手指点... 展开
3个回答
展开全部
同意楼上两位,要么使用防止转义的@字符,则其中的"\"不再转义,要么构造转义,让其转成"\"字符,“\' ”就是表示'字符的,而“\”则是写出“\\”就可以了,所以:
private static readonly string constring = "Data Source=LENOVO-PC\\ACCP;Initial Catalog=Test;Persist Security Info=True;User ID=sa;Password=***********";
或者:
private static readonly string constring = @"Data Source=LENOVO-PC\ACCP;Initial Catalog=Test;Persist Security Info=True;User ID=sa;Password=***********";
都是可以的。
注意的是string是不能写成String的,String是一个类,而string是一个类型,这里很明显要用的是string,两者是有区别的!
private static readonly string constring = "Data Source=LENOVO-PC\\ACCP;Initial Catalog=Test;Persist Security Info=True;User ID=sa;Password=***********";
或者:
private static readonly string constring = @"Data Source=LENOVO-PC\ACCP;Initial Catalog=Test;Persist Security Info=True;User ID=sa;Password=***********";
都是可以的。
注意的是string是不能写成String的,String是一个类,而string是一个类型,这里很明显要用的是string,两者是有区别的!
展开全部
LENOVO-PC\\ACCP 多写一个斜线
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
private static readonly String connString = @"Data Source=.;Initial Catalog=Test;Persist Security Info=True;User ID=sa;Password=111111";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询