用vs2005连接sql2000时,为什么会连接不上?
我在用vs2005的时候做数据库的连接,结果出现的问题是连接数据库本身自带的数据库中的类型是系统的能连接上的,但是不知道为什么类型是用户的就连接不上了的,我已经调了好久的...
我在用vs2005的时候做数据库的连接,结果出现的问题是连接数据库本身自带的数据库中的类型是系统的能连接上的,但是不知道为什么类型是用户的就连接不上了的,我已经调了好久的程序了,就是调不出来,求高手解惑
我取数据的代码是:
SqlConnection cn = new SqlConnection("trusted_connection=true;server=.;database=master");
SqlCommand cmd = new SqlCommand("select * from CHECK_CONSTRAINTS ", cn);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet( );
da.Fill(ds, "CHECK_CONSTRAINTS");
this.GridView1.DataSource = ds.Tables[0].DefaultView;
this.DataBind();
但是代码换成:
SqlConnection cn = new SqlConnection("trusted_connection=true;server=.;database=Northwind");
SqlCommand cmd = new SqlCommand("select * from Categories ", cn);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet( );
da.Fill(ds, "Categories");
this.GridView1.DataSource = ds.Tables[0].DefaultView;
this.DataBind();
就出现这样的情况了的。 展开
我取数据的代码是:
SqlConnection cn = new SqlConnection("trusted_connection=true;server=.;database=master");
SqlCommand cmd = new SqlCommand("select * from CHECK_CONSTRAINTS ", cn);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet( );
da.Fill(ds, "CHECK_CONSTRAINTS");
this.GridView1.DataSource = ds.Tables[0].DefaultView;
this.DataBind();
但是代码换成:
SqlConnection cn = new SqlConnection("trusted_connection=true;server=.;database=Northwind");
SqlCommand cmd = new SqlCommand("select * from Categories ", cn);
SqlDataAdapter da = new SqlDataAdapter(cmd);
DataSet ds = new DataSet( );
da.Fill(ds, "Categories");
this.GridView1.DataSource = ds.Tables[0].DefaultView;
this.DataBind();
就出现这样的情况了的。 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询