visual studio 2005 连接 sql server 2000问题
各位前辈,小弟是菜菜,有一题相求,望能人解答!本人电脑安装了VS2005,VS2005中自带了SQL2005的express版,但本人然后安装了SQL2005 DEV版,运行正常。
之后,为了需要又安装了SQL2000,2000独立运行一切正常,但在VS2005中连接时却总提示与SQL2005远程连接不上。
我现在需要连接的是SQL2000,但VS一直试着连接SQL2005。
以下是代码
SqlConnection cn = new SqlConnection("server=gold_lid'\'goldfir;database=fir;user=dan;password=dan");
SqlCommand cmd=new SqlCommand("select * from aaaa",cn);
SqlDataAdapter da=new SqlDataAdapter(cmd);
DataSet ds=new DataSet();
da.Fill(ds,"aaaa");
this.GridView1.DataSource=ds.Tables[0].DefaultView;
this.GridView1.DataBind();
server=gold_lid'\'goldfir 中的反斜杠如果不加单引号,VS会提示编译错误。gold_lid是机器名,goldfir是SQL2000的实例名,与SQL2005的实例名不冲突。
估计此题不难,求救啊!