Hi, I get a build error("Unrecognized Escape Sequence") for the following line; this.SqlDbConnection1.ConnectionString = "data source=RAJU\VSdotNET;initial catalog=nwind;integrated security=SSPI;persist security info=False;workstation id=RAJU;packet size=4096";
Can anyone please explain where I am going wrong. Thanks, Raj.Net
I think because you have RAJU\VSdotNET (\ actually) in the connection string, I believe you would need to use @ in front of the string OR optionally set the data source as RAJU\\VSdotNET . I.e
RManc3
Member
85 Points
19 Posts
build error for connection string
Aug 01, 2003 06:12 PM|LINK
joteke
All-Star
46284 Points
6896 Posts
ASPInsiders
MVP
Re: build error for connection string
Aug 01, 2003 06:18 PM|LINK
Teemu Keiski
Finland, EU
RManc3
Member
85 Points
19 Posts
Re: build error for connection string
Aug 01, 2003 06:31 PM|LINK