这段代码其中有一些不太明白??是判断不能重复注册的...
string sql = "select count(*) from yanzheng where vdengluname='" + textBox1.Text + "'";//不明白,查询的目的是什么??SqlConnection connection = new SqlConnection("Data Source=05608A0429C64E1\\123;Initial Catalog=jimmy;User ID=guchao;Password=jimmy");//明白
SqlCommand command = new SqlCommand(sql, connection);
command.Connection.Open();
int n = Convert.ToInt32(command.ExecuteReader ());//什么意思????//command.ExecuteReader ()不明白
command.Connection.Close();
if (n > 0) //n<0代表什么呢?
{
MessageBox.Show("该用户已经存在,请重新输入!");
this.textBox1.Text = "";
textBox1.Select();
}
麻烦解释一下 ,加注释的地方