C# .NET与SQL连接的问题
已有SQL数据库,表1,字段Name(王)想要在设计界面的文本框显示Name的数据(王)
我已经写了一下代码
public void Diaplay()
{
string Str="Persist Security Info=False;Initial Catalog=Northwind;Data Source=localhost;Integrated Security=SSPI;";
SqlConnection Con = new SqlConnection (Str);
Con.Open ();
SqlCommand Com = new SqlCommand ();
Com.CommandType = CommandType.Text ;
string str="select Name from 1;";
Com.CommandText =str;
Com.Connection =Con;
SqlDataReader Reader = Com.ExecuteReader ();
Reader.Read ();
this.textBox1 .Text =Reader.GetString (0);
Reader.Close ();
Con.Close ();
}
运行没有错误,但是文本框什么都不能显示
请教
还需要添加哪些控件或是代码有误还是少了哪些步骤?